apps/easel/templates/index.html 334 B raw
1
{{define "index.html"}}{{template "base.html" .}}{{end}}
2
{{define "title"}}Easel — {{.TodayDate}}{{end}}
3
{{define "content"}}
4
  {{if .Artwork}}
5
    {{template "artwork" .Artwork}}
6
  {{else}}
7
    <div class="empty">
8
      <p>Today's artwork ({{.TodayDate}}) is not yet available. Check back shortly.</p>
9
    </div>
10
  {{end}}
11
{{end}}