aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2021-01-28 16:33:29 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2021-01-28 16:33:29 +0100
commit7343314fb11b3f5fc27fc79c316dbd836aba1b7d (patch)
tree4d1a2c01dd985c9be6674e82d62b66900727f2e3
parent95df760bc1571071a7f6b9f626ecd4e5e3b34adc (diff)
downloadmitjafelicijan.com-7343314fb11b3f5fc27fc79c316dbd836aba1b7d.tar.gz
Optiomizations
-rwxr-xr-xtemplate/index.html20
1 files changed, 9 insertions, 11 deletions
diff --git a/template/index.html b/template/index.html
index a566d95..8a09228 100755
--- a/template/index.html
+++ b/template/index.html
@@ -21,15 +21,15 @@
21 21
22 <ul class="post-list"> 22 <ul class="post-list">
23 {{range $index, $post := .Posts}} 23 {{range $index, $post := .Posts}}
24 {{if $post.Listing}} 24 {{if $post.Listing}}
25 <li> 25 <li>
26 <time>{{.CreatedFormatted}}</time> 26 <time>{{.CreatedFormatted}}</time>
27 27
28 <a href="/{{$post.Slug}}" title="{{$post.Title}}" itemprop="url"> 28 <a href="/{{$post.Slug}}" title="{{$post.Title}}" itemprop="url">
29 <h2>{{$post.Title}}</h2> 29 <h2>{{$post.Title}}</h2>
30 </a> 30 </a>
31 </li> 31 </li>
32 {{end}} 32 {{end}}
33 {{end}} 33 {{end}}
34 </ul> 34 </ul>
35 </nav> 35 </nav>
@@ -53,8 +53,6 @@
53 {{template "openring-build.html"}} 53 {{template "openring-build.html"}}
54 </main> 54 </main>
55 55
56 {{template "_includes.html"}}
57
58 </body> 56 </body>
59 57
60</html> 58</html>