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

list.html « about « layouts - github.com/themefisher/parsa-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 179ad9ce4ab1231aee41a84fec8f3311ca7f2af6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ define "main" }}

<section class="section">
  <div class="container">
    <div class="row">
      <div class="col-lg-12">
        <h2 class="mb-4">{{.Title }}</h2>
        <img src="{{.Params.Image | absURL }}" alt="{{site.Params.author}}" class="img-fluid w-100 mb-4">
        <h3 class="font-weight-light">Hello, I’m <span class="font-weight-bold">{{site.Params.author}}</span></h3>
        {{ .Content }}
      </div>
    </div>
  </div>
</section>

{{partial "instafeed.html" . }}

{{ end }}