~dricottone/blog

ref: e53e7c8e51d7a1c6f5f83ba5fd9e0c80ed154e22 blog/layouts/index.html -rw-r--r-- 620 bytes
e53e7c8eDominic Ricottone Chat fixes 1 year, 5 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{{ define "main" }}

<div id="content">
  <h1>{{ .Title }}</h1>

  {{ .Content }}

  <hr />
</div>

<div id="blog-content">
  <p>These are my three most recent blog posts. More posts can be found on the 'Blog' tab.<p>

  <ul id="blog-list">
    {{ with .Site.GetPage "/posts" }}
    {{ range first 3 .Pages }}
    <li>
      <h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2>

      <p><i>posted on {{ .Date.Format "2006-01-02" }}</i></p>

      <p>{{ .Summary }}</p>
      {{ if .Truncated }}<p><a href="{{ .Permalink }}">Read Moreā€¦</a></p>{{ end }}
    </li>
    {{ end }}
    {{ end }}
  </ul>
</div>

{{ end }}