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

list.html « _default « layouts - github.com/gurusabarish/hugo-profile.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 58f6be91f81ed0aea7cd08dfb33a03c55520eeec (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{{ define "main" }}
<section class="bg-light">
  <div class="container-fluid">

    <div class="row pt-3 justify-content-center">
      <div class="col-lg-6 col-md-6">
        {{ range .Paginator.Pages }}
        <div class=" mb-4">
          <div class="card border-bottom-primary shadow pb-2">
            <h5 class="card-header">
              {{ if .Params.tags }}
              {{ range .Params.tags }}
              <a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}" class="btn btn-info btn-rounded mb-2">{{  . }}</a>
              {{ end }}
              {{ end }}
            </h5>

            <a class="text-decoration-none" href="{{ .Permalink }}">
              <div class="card-body">
                <div class="text-xs font-weight-bold text-primary text-uppercase mb-1">{{ .Title }}</div>
                <div class="text-muted">
                  <svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-calendar" fill="currentColor"
                    xmlns="http://www.w3.org/2000/svg">
                    <path fill-rule="evenodd"
                      d="M1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1zm1-3a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2H2z" />
                    <path fill-rule="evenodd"
                      d="M3.5 0a.5.5 0 0 1 .5.5V1a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 .5-.5zm9 0a.5.5 0 0 1 .5.5V1a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 .5-.5z" />
                  </svg>
                  {{ dateFormat "Jan 2, 2006" .Date }}

                  {{ if .Params.author }}
                  <svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-person-fill" fill="currentColor"
                    xmlns="http://www.w3.org/2000/svg">
                    <path fill-rule="evenodd"
                      d="M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6z" />
                  </svg>
                  {{ .Params.author }}
                  {{ end }}
                </div>
              </div>
            </a>
          </div>
        </div>
        {{ end }}
        {{ template "_internal/pagination.html" . }}

        <div class="row justify-content-center pt-3">
          <div class="col-lg-7 col-md-7">
            <div class=" mb-4 pt-3">
              <div class="card shadow ">
                <h5 class="card-header bg-warning">Tags</h5>
                <div class=" card-body">
                  {{range $name, $taxonomy := .Site.Taxonomies.tags}} {{ $cnt := .Count }}
                  {{ with $.Site.GetPage (printf "/tags/%s" $name) }}
                  <a href="{{ .RelPermalink }}" class="btn btn-warning rounded-pill mb-2">{{$name}}</a>
                  {{end}}
                  {{end}}
                </div>
                </a>
              </div>
            </div>
          </div>
        </div>

      </div>
    </div>
  </div>



</section>
{{ end }}