Updating to make blog work
This commit is contained in:
parent
c5892a5972
commit
8d9671e2f0
3 changed files with 34 additions and 2 deletions
|
@ -11,3 +11,9 @@ sectionPagesMenu = "main"
|
|||
title = "home"
|
||||
weight = "10"
|
||||
url = "/"
|
||||
[[menu.main]]
|
||||
identifier = "posts"
|
||||
name = "Blog"
|
||||
title = "posts"
|
||||
weight = "20"
|
||||
url = "/posts/"
|
|
@ -8,6 +8,7 @@ categories:
|
|||
- Archived
|
||||
|
||||
---
|
||||
{{< rawhtml >}}
|
||||
<div dir="ltr">
|
||||
</p>
|
||||
|
||||
|
@ -79,3 +80,4 @@ categories:
|
|||
|
||||
<p>
|
||||
</div>
|
||||
{{< /rawhtml >}}
|
|
@ -0,0 +1,24 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
{{- partial "head.html" . -}}
|
||||
<body>
|
||||
{{- partial "header.html" . -}}
|
||||
<br>
|
||||
<main role="main">
|
||||
<div class="container">
|
||||
{{- block "main" . }}{{- end }}
|
||||
<h1>{{.Title}}</h1>
|
||||
{{.Content}}
|
||||
<ul>
|
||||
<!-- Ranges through content/posts/*.md -->
|
||||
{{ range .Pages }}
|
||||
<li>
|
||||
<a href="{{.Permalink}}">{{.Date.Format "2006-01-02"}} | {{.Title}}</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
</main>
|
||||
{{- partial "footer.html" . -}}
|
||||
</body>
|
||||
</html>
|
Reference in a new issue