mirror of
https://github.com/Noettore/cocoa-eh-hugo-theme.git
synced 2025-10-15 03:36:41 +02:00

- Change color from orange to blue; improve colors elsewhere - Change `div.section` to `section` - Rename `posts` directory to `blog` - Add ability to specify extra CSS files in `config.toml` - Removed `WebFontsFile` feature from `config.toml` - Remove the initials displayed on top right of single post pages - Update example site
32 lines
892 B
TOML
32 lines
892 B
TOML
baseurl = "https://you.github.io/" # TODO
|
|
builddrafts = false
|
|
canonifyurls = true
|
|
contentdir = "content"
|
|
languageCode = "en-US"
|
|
layoutdir = "layouts"
|
|
publishdir = "public"
|
|
author = "Arthur Dent"
|
|
title = "Arthur Dent"
|
|
pygmentsuseclasses = true
|
|
disqusShortname = "cocoaexamplesite" # TODO: optional, comment out to disable Disqus
|
|
|
|
[permalinks]
|
|
fixed = ":title/"
|
|
blog = "blog/:slug/"
|
|
|
|
[params]
|
|
Author = "Arthur Dent"
|
|
CacheBuster = true
|
|
DateForm = "Jan 2, 2006"
|
|
DateFormFull = "Mon Jan 2 2006 15:04:05 MST"
|
|
Description = "Don't panic"
|
|
Email = "you@example.space" # TODO:
|
|
FaviconFile = "img/leaf.ico"
|
|
GATracker = "XYZ" # TODO:
|
|
GitHub = "//github.com/you" # TODO:
|
|
Initials = "ad" # displayed on single post page; DEPRECATED in v0.3.0
|
|
Lang = "en"
|
|
LinkedIn = "//linkedin.com/in/you" # TODO:
|
|
Twitter = "//twitter.com/you" # TODO:
|
|
ExtraCssFiles = [ "/css/override.css" ] # relative to public directory
|