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

projects.html « _default « layouts - github.com/nurlansu/hugo-sustain.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7aa3469974bf713e5993588b1f69eae0c5e74663 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{{ define "main" }}
  <!-- Header -->
  {{ partial "header" . }}

  <div class="container">
    <section id="projects">
      <h4 class="my-5">{{ .Site.Data.projects.name }}</h4>
      <div class="panel">
        <div class="panel-body">
          {{ range $el := .Site.Data.projects.source }}
            <h5>
              <i class="{{ .icon }}"></i>&nbsp;&nbsp;
              <b><a href="{{ .url }}">{{ $el.name }}</a></b>&nbsp;-&nbsp;{{ $el.description }}
            </h5>
          {{ end }}
        </div>
      </div>
    </section>
  </div>
{{ end }}