hugo-semantic-theme

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

single.html (307B)


      1 {{ define "content" }}
      2     <main class="main">
      3       <article class="h-entry">
      4       <header>
      5         <h1 class="p-name"><a href="{{ .Permalink }}" class="u-url">{{ .Title }}</a></h1>
      6       </header>
      7 
      8       <div class="e-content">
      9         {{ .Content }}
     10       </div>
     11       </article>
     12     </main>
     13 {{ end }}
     14