Source code of my website
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

✨ : add tag description

+19
+19
layouts/_default/list.html
··· 1 + {{ define "main" -}} 2 + <h1 class="title">{{ .Title }}</h1> 3 + <p>{{ .Description }}</p> 4 + <ul class="entries"> 5 + {{ range .Pages.GroupByDate "2006" }} 6 + <h3 style="text-align: center;">{{ .Key }}</h3> 7 + {{ range .Pages }} 8 + <li> 9 + <span class="title"> 10 + <a href="{{ .RelPermalink }}">{{ .Title }}</a> 11 + </span> 12 + <span class="published"> 13 + <time class="pull-right post-list">{{ .Date | time.Format ":date_long" }}</time> 14 + </span> 15 + </li> 16 + {{ end }} 17 + {{ end }} 18 + </ul> 19 + {{ end }}