refactors the layouts
This commit is contained in:
parent
cefd39e9a1
commit
05d11325ea
28 changed files with 394 additions and 116 deletions
10
layouts/partials/posts-list.html
Normal file
10
layouts/partials/posts-list.html
Normal file
|
@ -0,0 +1,10 @@
|
|||
{{ range . }}
|
||||
<li>
|
||||
<span class="list__title--small">
|
||||
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
|
||||
{{if not .Date.IsZero}}
|
||||
<time class="list__date pull-right hidden-tablet">{{.Date.Format ("Jan 02 '06")}}</time>
|
||||
{{end}}
|
||||
</span>
|
||||
</li>
|
||||
{{ end }}
|
Loading…
Add table
Add a link
Reference in a new issue