Created
June 14, 2018 08:09
-
-
Save cyantarek/ca2636b79083b9b33b1fd26e55099893 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
{{template "base" .}} | |
{{define "title"}} Posts List {{end}} | |
{{define "content"}} | |
{{range .posts}} | |
<div class="post_wrapper"> | |
<h2 class="title"> | |
<a href="/posts/{{.ID}}">{{.Title}}</a> | |
</h2> | |
<p class="date"> | |
{{.CreatedAt.Format "Jan, 03, 2006"}} | |
</p> | |
</div> | |
{{end}} | |
{{end}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment