Compare commits

..

1 Commits

Author SHA1 Message Date
ivan 582c40175a removed list from index page 2018-05-03 13:39:34 +03:00
3 changed files with 2 additions and 8 deletions

View File

@ -6,6 +6,7 @@
{{ .Content }}
{{if not .IsHome }}
<ul>
{{ range (where .Data.Pages "Section" "!=" "") }}
<li>
@ -14,5 +15,6 @@
</li>
{{ end }}
</ul>
{{ end }}
{{ partial "footer.html" . }}

View File

@ -3,13 +3,6 @@
<h1><span class="title">{{ .Title }}</span></h1>
{{ with .Params.author }}<h2 class="author">{{ . }}</h2>{{ end }}
{{ if (gt .Params.date 0) }}<h2 class="date">{{ .Date.Format "2006/01/02" }}</h2>{{ end }}
<p class="terms">
{{ range $i := (slice "categories" "tags") }}
{{ with ($.Param $i) }}
{{ $i | title }}: {{ range $k := . }}<a href="{{ relURL (print "/" $i "/" $k | urlize) }}">{{$k}}</a> {{ end }}
{{ end }}
{{ end }}
</p>
</div>
<main>

View File

@ -14,7 +14,6 @@ body {
padding: 5px;
border-radius: 5px;
}
.terms { font-size: .9em; }
.menu, .article-meta, footer { text-align: center; }
.title { font-size: 1.1em; }
footer a { text-decoration: none; }