diff options
Diffstat (limited to 'layouts/index.html')
-rw-r--r-- | layouts/index.html | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/layouts/index.html b/layouts/index.html index 9d181dc..04d3175 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -1,18 +1,18 @@ -{{ partial "head.html" . }} - <body class="{{ .Site.Params.themeColor }} {{if .Site.Params.layoutReverse}}layout-reverse{{end}}"> - <main class="content container" role="main"> - <section class="recent"> - <h2>Recent Posts</h2> - <ul class="posts"> - {{ range first 10 .Data.Pages }} - <li> - <a class="post-title" href="{{ .RelPermalink | replaceRE "/$" "" }}">{{ .Title }}</a> - <time class="post-date" datetime="{{ .Date.Format "2006-01-02T15:04:05Z" }}">{{ .Date.Format "Monday, 2 January 2006" }}</time> - </li> - {{ end }} - </ul> - </section> - </main> -{{ partial "sidebar.html" . }} - </body> -</html> +{{ define "main" -}} +<div class="posts"> +{{ range .Data.Pages -}} +<div class="post"> + <h1 class="post-title"> + <a href="{{ .Permalink }}">{{ .Title }}</a> + </h1> + <time class="post-date" datetime="{{ .Date.Format "2006-01-02T15:04:05Z" }}">{{ .Date.Format "Monday, 2 January 2006" }}</time> + {{ .Summary }} + {{ if .Truncated }} + <div class="read-more-link"> + <a href="{{ .RelPermalink }}">Read Moreā¦</a> + </div> + {{ end }} +</div> +{{- end }} +</div> +{{- end }} |