apps/posts/templates/posts.html 841 B raw
1
{{define "posts.html"}}{{template "base.html" .}}{{end}}
2
{{define "title"}}Posts — {{.BlogTitle}}{{end}}
3
{{define "meta"}}
4
  {{if .OGImageURL}}
5
    <meta property="og:image" content="{{.OGImageURL}}">
6
  {{else}}
7
    <meta property="og:image" content="{{.SiteURL}}/static/og.png">
8
  {{end}}
9
  <meta property="og:url" content="{{.SiteURL}}/posts">
10
{{end}}
11
{{define "content"}}
12
  <h1>Posts</h1>
13
  {{if not .Posts}}
14
    <p class="empty">no posts yet</p>
15
  {{end}}
16
  <div class="post-list">
17
    {{range .Posts}}
18
      <a href="/posts/{{.Slug}}" class="post-item post-item-enhanced">
19
        <div class="post-item-info">
20
          <span class="post-title">{{.DisplayTitle}}</span>
21
        </div>
22
        {{if .PublishedDate}}
23
          <time class="post-date">{{.PublishedDateStr}}</time>
24
        {{end}}
25
      </a>
26
    {{end}}
27
  </div>
28
{{end}}