aboutsummaryrefslogtreecommitdiff
path: root/layouts/_default/single.html
blob: 8313a5e292dc62e45d495da8a4534cdc6c54abbe (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 }}