Created
May 13, 2019 17:41
-
-
Save dbridges/7f8f1e76ae3fda9c2fcedc1ed550172b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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