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

title.html « partials « layouts - github.com/urjaacharya/redgood.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6f12a9891420025f82883d1cc80b3a96b5e685c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<div>
  <p class="site-title home-{{ .IsHome }}">
    {{ if not .IsHome }}
    {{ if eq .Kind "taxonomy" }}#{{ end }}{{ .Title }}
    {{ if eq .Kind "page" }}
    <p>
      {{ dateFormat .Site.Params.theme.dateFormat .Date }} &middot; {{ .Site.Params.author }}
    </p>
    {{ end }}
    {{ end }}
  </p>
  {{ if .IsHome }}
  <p class="about-narrative">
    {{ .Site.Params.about.narrative | markdownify }}
  </p>
  {{ end }}
</div>