simple-hugo

A simple Hugo theme I use for my website
git clone git://git.christianermann.dev/simple-hugo
Log | Files | Refs | README | LICENSE

summary.html (470B)


      1 <div class="summary">
      2     <h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
      3     <div class="summary_metadata">
      4         <time>{{ .Date.Format "2006-01-02" }}</time>
      5         {{ range .Params.tags }}
      6             <a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>.
      7         {{ end }}
      8     </div>
      9     <div class="summary_body">
     10         {{ .Summary }}
     11     </div>
     12     {{ if .Truncated }}
     13         <a href="{{ .Permalink }}">Read more...</a>
     14     {{ end }}
     15 </div>