first attempt at alphabetized lists - buggy but easier to read
This commit is contained in:
parent
404b771d8d
commit
127100585b
|
@ -7,7 +7,7 @@
|
|||
|
||||
{{- .Title -}}
|
||||
</h1>
|
||||
{{ range .Paginator.Pages }}
|
||||
{{ range .Paginator.Pages.ByTitle }}
|
||||
<div class="pure-g">
|
||||
<div class="pure-u-1-3">
|
||||
{{ .Date.Format (.Site.Params.dateFormat | default "January 2, 2006" ) }}
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
{{ define "content" }}
|
||||
<section class="container list">
|
||||
<h1 class="title">{{ .Title }}</h1>
|
||||
{{ range $i, $page := .Paginator.Pages }}
|
||||
{{ range $i, $page := .Paginator.Pages.ByTitle }}
|
||||
{{ if $i }}<hr/> {{ end }}
|
||||
<div class="pure-g flex-center">
|
||||
<div class="pure-u-1 pure-u-sm-2-3">
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
{{- .Title -}}
|
||||
</h1>
|
||||
{{ range .Paginator.Pages }}
|
||||
{{ range .Paginator.Pages.ByTitle }}
|
||||
<div class="pure-g">
|
||||
<div class="pure-u-1">
|
||||
<h3><a href="{{ .Permalink }}">{{ .Title }}</a></h3>
|
||||
|
|
Loading…
Reference in a new issue