aboutsummaryrefslogtreecommitdiff
path: root/layouts/index.html
blob: 87a22193171116084b223c027a36bdc9c832b1ee (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
29
30
31
32
33
34
35
36
{{ define "main" }}
<div class="section" id="section-1">
  <div class="section-child">
    {{- partial "index_nav.html" . -}}
    <!-- The first section of the page will be loaded with partial intro.html -->
    <!-- and/or .Site.Params.indexContent variable in your hugo config file.  -->
    <!-- While the second section will be generated by content/_index.md file -->
    <!-- basically, the first section is more permanent,                      -->
    <!-- while you can regularly and easily change the second section         -->

    {{ if .Site.Params.indexContent }}
      {{ .Site.Params.indexContent | safeHTML }}
    {{ else }}
      {{- partial "intro.html" . -}}
    {{ end }}
  </div>
</div>

<!--
<div class="section" id="section-2">
  <div class="section-child">
    <div id="other-content">
      {{ .Content }}
    </div>
      <div class="img-l">
-->
        <!-- remove the <a> tag if the image shouldn't be a hyperlink -->
<!--
        <a href="{{ .Params.imgLink }}">
          <img src="{{ .Params.img }}" alt="{{ .Params.imgAlt }}"/>
        </a>
      </div>
  </div>
</div>
-->
{{ end }}