Use same page for homepage and list for factorization
parent
e366ee7049
commit
e51a2dc03d
|
@ -1,15 +1,15 @@
|
|||
{{ define "main" }}
|
||||
<main>
|
||||
<article>
|
||||
<!-- "{{.Content}}" pulls from the markdown content of the corresponding _index.md -->
|
||||
{{ .Content }}
|
||||
</article>
|
||||
<ul>
|
||||
{{ range .Paginator.Pages }}
|
||||
{{- partial "listitem.html" . -}}
|
||||
{{- partial "postinfo.html" . -}}
|
||||
{{ end }}
|
||||
</ul>
|
||||
{{- partial "pagination.html" . -}}
|
||||
{{ with .Content }}
|
||||
<article>
|
||||
{{ . }}
|
||||
</article>
|
||||
{{ end }}
|
||||
{{ range .Paginator.Pages }}
|
||||
<div class="box">
|
||||
{{ .Render "summary" }}
|
||||
</div>
|
||||
{{ end }}
|
||||
{{- partial "pagination.html" . -}}
|
||||
</main>
|
||||
{{ end }}
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
{{ define "main" }}
|
||||
<main>
|
||||
{{ with .Content }}
|
||||
<div>
|
||||
{{ . }}
|
||||
</div>
|
||||
{{ end }}
|
||||
{{ range .Paginator.Pages }}
|
||||
{{ .Render "summary" }}
|
||||
{{ end }}
|
||||
{{- partial "pagination.html" . -}}
|
||||
</main>
|
||||
{{ end }}
|
|
@ -12,6 +12,7 @@
|
|||
{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
||||
{{ if .IsPage }}
|
||||
<aside>
|
||||
<div>
|
||||
<section>
|
||||
|
@ -23,6 +24,7 @@
|
|||
</section>
|
||||
</div>
|
||||
</aside>
|
||||
{{ end }}
|
||||
</div>
|
||||
</section>
|
||||
</header>
|
||||
|
|
Loading…
Reference in New Issue