summaryrefslogtreecommitdiff
path: root/layouts/index.html
blob: 807197124e5773bf8a5a0295cc14d8cabd58b466 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{{ define "main" }}
<div id="home-wrapper">
  <div id="home">
    <div id="nav-wrapper">
      <div id="my-image-wrapper">
        <img id="my-image" src="{{ .Params.img }}" alt="{{ .Params.alt }}">
      </div>

      <div id="title-nav">
        <h1>{{ .Params.navTitle }}</h1>
        <nav>
          {{ range .Site.Params.homepageLinks }}
            <a href="{{ index . 1 }}">{{ index . 0 }}</a>
          {{ end }}
        </nav>
      </div>
    </div>

    {{ .Content }}

    <footer id="home-footer">
      <div id="copyright">
        {{ .Site.Copyright | safeHTML }}
      </div>
    </footer>
  </div>
</div>
{{ end }}