1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-19 04:55:30 -04:00

huge refactoring of content and theme

- de-personalize the theme as much as possible, moving personal info into config.toml parameters
- extract hard-coded content out layouts and into actual /content (especially home page and all of its assets)
- include full text of posts in RSS feed (aka making the world a better place)
- use abstract layout for both video pages (/leo and /birthday)
This commit is contained in:
2019-10-27 22:10:18 -04:00
parent abf99c0106
commit c79bba520b
39 changed files with 234 additions and 299 deletions

View File

@@ -2,6 +2,9 @@ baseURL = "https://jarv.is/"
languageCode = "en-us"
title = "Jake Jarvis"
# increase timeout for image processing
timeout = 60000
canonifyURLs = true
disableFastRender = true
@@ -13,8 +16,17 @@ pygmentsCodeFences = true
enableRobotsTXT = true
# increase timeout for image processing
timeout = 60000
[author]
name = "Jake Jarvis"
email = "jake@jarv.is"
twitter = "@jakejarvis"
github = "jakejarvis"
[params]
domain = "jarv.is"
gitRepo = "https://github.com/jakejarvis/jarv.is"
wayback = "https://web.archive.org/web/20010501000000*/jakejarvis.com"
copyrightFirstYear = "2001"
[outputs]
home = ["HTML", "RSS"]