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

index.html « layouts - github.com/urjaacharya/redgood.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7095424f8bbf5babd95ceb4bebbafa43edbec0c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{ define "main" }}
{{ partial "index/pinnedPost" . }}
{{ partial "index/recentPost" . }}
<h3>Sections</h3>
<div class="site-sections home-page-card">
  {{ range .Site.Sections }}
  {{ if not .Params.hideFromHome }}
  <p>
    <a href="{{ .Permalink }}" aria-label="site sections">{{ .Title }}</a> - {{ len .Pages}} Articles
  </p>
  {{ end }} {{ end }}
</div>
{{ partial "taxa" (dict "taxo" .Site.Taxonomies "mysite" .) }}
{{ end }}