summaryrefslogtreecommitdiffstats
path: root/themes/rusticus/layouts/partials/main.html
blob: 162d27d956693b9092395819ba4f8e3402bad1be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<main class="home-page">
  <header>
      <div>
          <h1><span class="rust-cog"></span><br/>{{ .Site.Params.title }}</h1>
      </div>
  </header>

  <section class="news">
      <h1>news</h1>
      {{ partial "home/front-page-summary.html" (dict "context" . "section" "news") }}
  </section>
  <section class="blog">
      <h1>blog</h1>
      {{ partial "home/front-page-summary.html" (dict "context" . "section" "blog") }}
  </section>
  <section class="knowledge-base">
      <h1>knowledge base</h1>
      {{ partial "home/knowledge-base-section.html" . }}
  </section>
</main>