mirror of
https://github.com/Noettore/cocoa-eh-hugo-theme.git
synced 2025-10-15 03:36:41 +02:00
v0.3.0
- 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
This commit is contained in:
@@ -12,7 +12,7 @@ disqusShortname = "cocoaexamplesite" # TODO: optional, comment out to disable Di
|
||||
|
||||
[permalinks]
|
||||
fixed = ":title/"
|
||||
posts = "posts/:slug/"
|
||||
blog = "blog/:slug/"
|
||||
|
||||
[params]
|
||||
Author = "Arthur Dent"
|
||||
@@ -24,7 +24,8 @@ Email = "you@example.space" # TODO:
|
||||
FaviconFile = "img/leaf.ico"
|
||||
GATracker = "XYZ" # TODO:
|
||||
GitHub = "//github.com/you" # TODO:
|
||||
Initials = "ad" # displayed on single post page
|
||||
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
|
||||
|
@@ -1,8 +1,8 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<link rel="canonical" href="/posts"/>
|
||||
<link rel="canonical" href="/blog"/>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="refresh" content="0;url=/posts"/>
|
||||
<meta http-equiv="refresh" content="0;url=/blog"/>
|
||||
</head>
|
||||
</html>
|
1
exampleSite/static/css/override.css
Normal file
1
exampleSite/static/css/override.css
Normal file
@@ -0,0 +1 @@
|
||||
/* override css styles of the main theme here */
|
Reference in New Issue
Block a user