2 Commits

4 changed files with 10 additions and 4 deletions

View File

@@ -3,10 +3,11 @@ languageCode = "en-us"
title = "A minimal Hugo website"
theme = "hugo-xmin"
googleAnalytics = ""
disqusShortname = "yihui"
disqusShortname = ""
ignoreFiles = ["\\.Rmd$", "\\.Rmarkdown$", "_files$", "_cache$"]
preserveTaxonomyNames = true
footnotereturnlinkcontents = "↩"
paginate = 1
[permalinks]
post = "/post/:year/:month/:day/:slug/"

View File

@@ -2,5 +2,3 @@
<script async src="//cdn.bootcss.com/mathjax/2.7.1/MathJax.js?config=TeX-MML-AM_CHTML"></script>
<script async src="//yihui.name/js/center-img.js"></script>
{{ template "_internal/disqus.html" . }}

View File

@@ -7,12 +7,14 @@
{{ .Content }}
<ul>
{{ range (where .Data.Pages "Section" "!=" "") }}
{{ $paginator := .Paginate (where .Data.Pages "Section" "!=" "") }}
{{ range $paginator.Pages }}
<li>
<span class="date">{{ .Date.Format "2006/01/02" }}</span>
<a href="{{ .URL }}">{{ .Title }}</a>
</li>
{{ end }}
</ul>
{{ template "_internal/pagination.html" . }}
{{ partial "footer.html" . }}

View File

@@ -22,6 +22,11 @@ hr {
color: #ddd;
}
/* pagination */
.pagination { text-align: center; }
.pagination li { display: inline; }
.pagination a { padding: 0 .2em; }
/* code */
pre {
border: 1px solid #ddd;