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

single.html « _default « layouts - github.com/darshanbaral/mero.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c614728e585804e5b3971d60e36d785c963712ac (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
26
27
28
{{ define "main" }}
<main>
  <h1>
    <u>{{ .Title }}</u>
  </h1>
  <ul class="list-inline">
    <li class="list-inline-item">
      {{ .Date.Format "2006-Jan-02" }} |
      <a href="/tags/">
        <i class="fas fa-tags"></i>
      </a>
    </li>
    {{  range.Params.tags }}
    <li class="list-inline-item">
      <a href="/tags/{{ . }}/">
        {{ . }}
      </a>
    </li>
    {{ end }}
  </ul>
  <div>
    <article id="content">
      {{ .Content }}
    </article>
  </div>
</main>
{{ partial "footer.html" . }}
{{ end }}