summaryrefslogblamecommitdiffstats
path: root/themes/problematic/layouts/index.html
blob: de7fa7326ef1127ebbb3753d0e577e36f60d6551 (plain) (tree)
1
2
3
4
5
6
7
8
9
 

                           





                                           





                                                                                                               
                                  





                 

{{ define "main" }}
    <main aria-role="main">
      <header class="homepage-header">
        <h1>{{.Title}}</h1>
        {{ with .Params.subtitle }}
        <span class="subtitle">{{.}}</span>
        {{ end }}
      </header>
      <div class="homepage-content">
        <!-- Note that the content for index.html, as a sort of list page, will pull from content/_index.md -->
        {{.Content}}
      </div>
      <div>
        {{ range first 10 .Site.RegularPages }}
            {{ .Render "summary"}}
        {{ end }}
      </div>
    </main>
{{ end }}