aboutsummaryrefslogtreecommitdiff
path: root/generators/hugo/themes/tdro/layouts/_default/subsection.html
blob: 6103758f78d1dba3ad44e428de83aee8d2847196 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{ define "main" }}
<section class="section is-fullheight" itemscope itemtype="https://schema.org/WebPage">
  <div class="container">
    <div class="columns is-centered">
      <div class="column is-7">
        <article class="content">
          <h1 class="title is-3">{{ .Title }}</h1>
          {{- partial "page-status.html" . -}}
          {{- .Content | replaceRE "<a" "<a class=\"underline\"" | safeHTML }}
        </article>
      </div>
    </div>
  </div>
</section>
{{ end }}