hugo-semantic-theme

A minimal semantically rich Hugo theme
Log | Files | Refs | LICENSE

index.html (763B)


      1 {{ define "content" }}
      2 <main class="main">
      3   <ul class="h-feed">
      4     {{ $paginator := .Paginate (where .Site.RegularPages "Type" "post") }}
      5     {{ range $paginator.Pages }}
      6     <li class="h-entry">
      7           <h2 class="p-name"><a href="{{ .Permalink }}" class="u-url">{{ .Title }}</a></h2>
      8           <time class="dt-published" datetime="{{ .Date.Format `Jan 02 2006` }}">{{ .Date.Format "Jan 02, 2006" }}</time>
      9 
     10           <article class="p-summary">
     11             {{ .Summary }}
     12             {{ if .Truncated }}
     13             <p><a href="{{ .RelPermalink }}">Read Moreā€¦</a></p>
     14             {{ end }}
     15           </article>
     16     </li>
     17     {{ end }}
     18   </ul>
     19 
     20   <nav class="pagination">
     21   page:
     22   {{ template "_internal/pagination.html" . }}
     23   </nav>
     24 
     25 </main>
     26 {{ end }}
     27