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

post-list.html « partials « layouts - github.com/ijsucceed/onepress.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 48a8cd830eb35a8a88449eaa553c5795644cc4e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{{ range where .Paginator.Pages "Section" "ne" "" }}
<article class="list">
  <a href='{{ .URL }}'><h2 class="title">{{ .LinkTitle }}</h2></a>
  <span class="tags">
  {{ .Date.Format "January 2, 2006" }} 
  {{ if .Params.tags }}
     , posted under
     {{range .Params.tags}}
        <a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>
     {{end}}
  {{end}}
  </span>
  {{ if .Params.featuredImage  }}
  <a href='{{ .URL }}'><span class="image" style="background-image: url({{.Params.featuredimage }})"></span></a>
  {{ end }}
  <span class="intro">{{ .Description | markdownify }}</span>
  <a href='{{ .URL }}' class="read-more">
      {{ if .Site.Params.readMore }} 
          {{.Site.Params.readMore}}
      {{ else }}
          Read Up
      {{ end }}
  </a>
</article>
{{ end }}