summaryrefslogtreecommitdiff
path: root/layouts/pages/page.html
blob: 7982969f683732c779e2f49b93cd73fa0aef09c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ define "main"}}
<main aria-role="main">
  <div class="section">
    <div class="columns">
      <div class="column">
        <div class="content">
          <p class="title is-3">{{ if .Params.fa_icon }}<i class="{{ .Params.fa_icon }}"></i>{{ end }}
            {{.Page.Title}}
          </p>
            {{ .Content }}
        </div>
      </div>
    </div>
  </div>
</main>
{{ end }}