You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
909 B
HTML
28 lines
909 B
HTML
{{ define "main" }}
|
|
{{ partial "profile.html" . }}
|
|
|
|
|
|
<section id="wrapper" class="home">
|
|
<ul id="post-list">
|
|
{{ range where .Paginator.Pages "Params.hidden" "ne" "true" }}
|
|
{{ $url := replace .Permalink .Site.BaseURL "" }}
|
|
{{ if ne $url "about/" }}
|
|
<li>
|
|
<aside class="dates">{{ .Date.Format "Jan 2" }}</aside>
|
|
<a href='{{ .Permalink }}'>
|
|
{{ .Title }}
|
|
{{ if .Site.Params.enableSummary }}
|
|
{{ if .Site.Params.useDescriptionReplaceSummary }}
|
|
<h2>{{ .Description | plainify }}</h2>
|
|
{{ else }}
|
|
<h2>{{ .Summary | plainify | htmlUnescape }}</h2>
|
|
{{ end }}
|
|
{{ end }}
|
|
</a>
|
|
</li>
|
|
{{ end }}
|
|
{{ end }}
|
|
</ul>
|
|
</section>
|
|
{{ end }}
|