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

single.html « _default « layouts - github.com/st-wong/hugo-spectre-pixel-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 54ea69e61263bc1a2eeb53cd77f1bef0270ceee7 (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
{{ define "main" }}
<article class="container p-centered mt-space">
  <header>
    <h2 class="text-center">{{ .Title }}</h2>
    <h6 class="text-gray text-italic">{{ .Description | markdownify }}</h6>
  </header>
  <section class="my-gap">
    {{ .Content }}

  </section>
  <div class="divider my-gap"></div>
  <footer class="col-12 d-inline-block">
    <span class="float-left">
      <a class="btn btn-action btn-accent shadow s-circle" href='{{ .Site.BaseURL }}'><i class="fas fa-home"></i></a>
    </span>
    <span class="float-right">
      <div class="text-right float-left mx-2">
        <span class="text-dark">{{ .Site.Params.name }}</span><br>
        <span class="text-gray">{{ .Site.Params.aboutAuthor }}</span>
      </div>
      <figure class="avatar avatar-lg">
        <img id="profile">
      </figure>
    </span>
  </footer>
</article>
{{ end }}