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