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

single.html « post « layouts - github.com/damiencaselli/hugo-journal.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0c303e53e6af775c7d23f9a4aeaafeb095826d7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ partial "top.html" . }}

  <article class="post">
    <header class="post-header">
      <h1 class="post-title">{{ .Title }}</h1>
      <time class="post-date" datetime="{{ dateFormat "2006-01-02T15:04:05Z-07:00" .Date }}">{{ dateFormat "02 Jan 2006" .Date }}</time>
    </header>

    {{ .Content }}

  </article>

{{ partial "bottom.html" . }}