* Fix static/images symlink errors

* Fix RSSLink deprecation
* Fix https://github.com/gohugoio/hugoThemes/issues/682
This commit is contained in:
Tony Blyler 2019-08-25 21:32:33 -04:00
parent 82bbfc0251
commit 5ef28a4864
9 changed files with 16 additions and 14 deletions
layouts

View file

@ -1,7 +1,9 @@
{{ partial "header.html" . }}
{{ range first 10 .Data.Pages }}
{{ if eq .Type "post" }}
{{ .Render "summary" }}
{{ end }}
{{ $pages := .Pages }}
{{ if .IsHome }}
{{ $pages = .Site.RegularPages }}
{{ end }}
{{ range first 10 $pages }}
{{ .Render "summary" }}
{{ end }}
{{ partial "footer.html" . }}