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

blog.html « sections « partials « layouts - github.com/kdevo/osprey-delight.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: adc990692beef22dbff20a2662792a5161b72583 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{{ if .Site.Params.enforceSinglePage -}}
  {{ warnf "enforceSinglePage is set to true. This is very likely not what you want for blog posts which will always redirect to main page with this option!"}}
{{- end }}
<div class="container">
  <div class="row center-xs">
    <div class="col-xs-12"><h1>{{ i18n "latestPosts" }}</h1></div>
  </div>
  <div class="row center-xs">
    <div class="col-xs-12 posts-list">
      {{ range first 5 (where site.RegularPages "Section" "blog") }}
        <article>
          <h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
          <div class=sub-header>
            {{ .Date.Format (.Site.Params.dateform | default "January 2, 2006") }} · {{ i18n "minuteRead" .ReadingTime }}
          </div>
        </article>
      {{ end }}
    </div>
  </div>
  <div class="row center-xs">
    <div class="col-xs-12"><h3><a href="{{ "blog/" | relLangURL }}"><span class="icon icon-angle-circled-right"></span>{{ i18n "viewAll" }}</a></h3></div>
  </div>
</div>