Welcome to mirror list, hosted at ThFree Co, Russian Federation.

summary.html « post « layouts - github.com/azmelanar/hugo-theme-pixyll.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 03b3504877a0aca9684cc7bee31c95e0cd6d54ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div class="post">
  <a class="post-link" href="{{ .Permalink }}">
  <p class="post-meta left">{{ .Date.Format "Jan 2, 2006" }}</p>
  <p class="post-author right">{{ i18n "written" }} {{ .Params.author }}</p>
  <div class="clearfix"></div>
  <h3 class="h2 post-title">{{ .Title }} {{ if .Draft }}(draft){{end}}</h3>
  <p class="post-summary">{{ .Summary }}</p>
  </a>
  {{ $baseurl := .Site.BaseURL }}
  <p class="post-meta">{{ i18n "tags" }}:&nbsp;
  {{ range $i, $e := .Params.tags }}
      {{if $i}},&nbsp;{{end}}
      <a href="{{ $baseurl }}{{ $.Site.LanguagePrefix }}/tags/{{ . }}">{{ . }}</a>
  {{ end }}</p>
</div>