Skip to content

Instantly share code, notes, and snippets.

@dbridges
Created May 13, 2019 17:41
Show Gist options
  • Save dbridges/7f8f1e76ae3fda9c2fcedc1ed550172b to your computer and use it in GitHub Desktop.
Save dbridges/7f8f1e76ae3fda9c2fcedc1ed550172b to your computer and use it in GitHub Desktop.
<div class="feed">
<h1>{{.Title}}</h1>
{{ range .FilteredEntries }}
<div class="entry">
<h3>
{{if not .Links}}
{{.Title}}
{{else}}
<a href="{{(index .Links 0).HREF}}">{{.Title}}</a>
{{end}}
</h3>
<em>
{{.Updated.LocalString}} by {{.Author.Name}}
</em>
<div class="entry-content">{{.Content.HTML}}</div>
</div>
{{ end }}
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment