- 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:
Nishanth Shanmugham
2015-12-24 16:45:37 -06:00
parent 0d9d498caa
commit 204880aac9
19 changed files with 283 additions and 327 deletions

View File

@@ -1,17 +1,17 @@
{{ partial "header.html" . }}
<div class="section main">
<section class="main">
<div class="container">
<div class="content">
<div class="page-heading">Posts</div>
<div class="page-heading">Blog</div>
<ul>
{{ range .Data.Pages.ByPublishDate }}
{{ if eq .Section "posts" }}
{{ if eq .Section "blog" }}
{{ partial "li.html" . }}
{{ end }}
{{ end }}
</ul>
</div>
</div>
</div>
</section>
{{ partial "footer.html" . }}