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

single.html « _default « layouts - github.com/10mohi6/hugo-theme-simple-blog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b9ae1bb18ddb3f5dfa77def7eacdae13828ca706 (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
29
30
31
{{ partial "header.html" . }}
<header class="text-center bg-dark pt-5 pb-5">
  {{ range .Params.categories }}
  <a href="{{ $.Site.BaseURL }}categories/{{ . | urlize }}/" class="text-success">{{ . }}</a>
  {{ end }}
  <h1 class="text-white pt-4 pb-3">{{ .Title }}</h1>
  <p class="text-secondary">{{.Date.Format "January 2, 2006"}}</p>
  {{ range .Params.tags }}
  <a href="{{ $.Site.BaseURL }}tags/{{ . | urlize }}/" class="text-info">#{{ . }}</a>
  {{ end }}
</header>
<div class="container">
  <div class="row pt-5">
    <div class="col-12">
      {{ .Content }}
    </div>
  </div>
  <div class="row pt-5 pb-5">
    <div class="col-6 text-left">
    {{ with .PrevInSection }}
      <a class="text-reset" href="{{ .Permalink }}">< {{ .Title }}</a>
    {{ end }}
    </div>
    <div class="col-6 text-right">
    {{ with .NextInSection }}
      <a class="text-reset" href="{{ .Permalink }}">{{ .Title }} ></a>
    {{ end }}
    </div>
  </div>
</div>
{{ partial "footer.html" . }}