aboutsummaryrefslogtreecommitdiff
path: root/layouts/_default/single.html
blob: da62135141d26a8d81a2547b36ff911e362d2e49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ define "main" }}
<div class="section" style="background-color: {{ .Params.bgColor }};">
  <div class="section-child">
    <div class="img-r">
      <a href="/image-ownership-notice/">
        <img src="{{ .Params.img }}" alt="{{ .Params.imgAlt }}"/>
      </a>
    </div>
    <p>{{ .Params.imgText }}</p>

    <div id="content">
      {{ .Content }}
    </div>
  </div>
</div>
{{ end }}