aboutsummaryrefslogtreecommitdiff
path: root/template/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'template/index.html')
-rwxr-xr-xtemplate/index.html25
1 files changed, 16 insertions, 9 deletions
diff --git a/template/index.html b/template/index.html
index 7727f3b..a566d95 100755
--- a/template/index.html
+++ b/template/index.html
@@ -21,20 +21,23 @@
21 21
22 <ul class="post-list"> 22 <ul class="post-list">
23 {{range $index, $post := .Posts}} 23 {{range $index, $post := .Posts}}
24 <li> 24 {{if $post.Listing}}
25 <time>{{.CreatedFormatted}}</time> 25 <li>
26 26 <time>{{.CreatedFormatted}}</time>
27 <a href="/{{$post.Slug}}" title="{{$post.Title}}" itemprop="url"> 27
28 <h2>{{$post.Title}}</h2> 28 <a href="/{{$post.Slug}}" title="{{$post.Title}}" itemprop="url">
29 </a> 29 <h2>{{$post.Title}}</h2>
30 30 </a>
31 </li> 31 </li>
32 {{end}}
32 {{end}} 33 {{end}}
33 </ul> 34 </ul>
34 </nav> 35 </nav>
35 36
37 <hr class="top-margin">
38
36 <section class="project-list"> 39 <section class="project-list">
37 <h2>Side projects</h2> 40 <h4>Side projects I work on</h4>
38 <ul> 41 <ul>
39 <li><a href="https://github.com/mitjafelicijan/redis-marshal" target="_blank" rel="noopener nofollow">redis-marshal - Lightweight Redis data exploration tool</a></li> 42 <li><a href="https://github.com/mitjafelicijan/redis-marshal" target="_blank" rel="noopener nofollow">redis-marshal - Lightweight Redis data exploration tool</a></li>
40 <li><a href="https://github.com/mitjafelicijan/dna-encoding" target="_blank" rel="noopener nofollow">dna-encoding - Tools for encoding files to DNA sequence</a></li> 43 <li><a href="https://github.com/mitjafelicijan/dna-encoding" target="_blank" rel="noopener nofollow">dna-encoding - Tools for encoding files to DNA sequence</a></li>
@@ -44,6 +47,10 @@
44 <li><a href="https://github.com/mitjafelicijan/scarecrow" target="_blank" rel="noopener nofollow">scarecrow - Minimal configuration reverse proxy</a></li> 47 <li><a href="https://github.com/mitjafelicijan/scarecrow" target="_blank" rel="noopener nofollow">scarecrow - Minimal configuration reverse proxy</a></li>
45 </ul> 48 </ul>
46 </section> 49 </section>
50
51 <hr class="top-margin">
52
53 {{template "openring-build.html"}}
47 </main> 54 </main>
48 55
49 {{template "_includes.html"}} 56 {{template "_includes.html"}}