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

header.html « partials « layouts - github.com/g1eny0ung/hugo-theme-dream.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 231811725483b42b5f8e26e4bac141fe0bc155e9 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<header class="hero dream-header">
  <div class="hero-body">
    <div class="media">
      {{ if isset .Site.Params "avatar" }}
      <div class="media-left">
        <figure class="image is-128x128 mr-4">
          <img class="is-rounded" src="{{ .Site.Params.avatar | relURL }}" alt="avatar" />
        </figure>
      </div>
      {{ end }}

      <div class="media-content">
        <h1 class="title is-4">
          {{- if .Site.Params.headerTitle -}}
          {{ .Site.Params.headerTitle }}
          {{- else -}}
          {{ "Set `headerTitle` in the `config.toml` to display the title" | markdownify }}
          {{- end -}}
        </h1>
        {{- if .Site.Params.motto -}}
        <div class="subtitle is-6 mb-4">
          {{- .Site.Params.motto | safeHTML -}}
        </div>
        {{- end -}}

        <section class="mb-4">
          {{ if gt (len (where .Site.RegularPages "Section" "==" "posts")) 0 }}
          <a href="{{ "posts" | relLangURL }}" title="{{ T "archives" }}">
            <span class="icon">
              <i class="fa-solid fa-box-archive"></i>
            </span>
          </a>
          {{ end }}
          <a href="{{ "categories" | relLangURL }}" title="{{ T "allCategories" }}">
            <span class="icon">
              <i class="fa-solid fa-bars-staggered"></i>
            </span>
          </a>
          <a href="{{ "tags" | relLangURL }}" title="{{ T "allTags" }}">
            <span class="icon">
              <i class="fa-solid fa-tags"></i>
            </span>
          </a>
        </section>

        {{ if .Site.Taxonomies.tags }}
        <section class="tags">
          {{ range .Site.Taxonomies.tags }}
          <a class="tag" href="{{ .Page.RelPermalink }}" title="{{ .Page.Title }}">
            {{- .Page.Title -}}
          </a>
          {{ end }}
        </section>
        {{ end }}
      </div>
    </div>
  </div>
</header>