diff options
Diffstat (limited to 'template/index.html')
| -rwxr-xr-x | template/index.html | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/template/index.html b/template/index.html deleted file mode 100755 index 9196940..0000000 --- a/template/index.html +++ /dev/null | |||
| @@ -1,62 +0,0 @@ | |||
| 1 | <!doctype html> | ||
| 2 | <html lang="en"> | ||
| 3 | |||
| 4 | <head> | ||
| 5 | {{template "_meta.html"}} | ||
| 6 | |||
| 7 | <title>{{.Title}}</title> | ||
| 8 | <meta name="description" content="{{.Description}}"> | ||
| 9 | <meta property="og:title" content="{{.Title}}"> | ||
| 10 | <meta property="og:description" content="{{.Description}}"> | ||
| 11 | </head> | ||
| 12 | |||
| 13 | <body> | ||
| 14 | |||
| 15 | {{template "_navigation.html"}} | ||
| 16 | |||
| 17 | <main class="wrapper"> | ||
| 18 | <h2>Blog posts</h2> | ||
| 19 | <nav itemscope itemtype="https://schema.org/SiteNavigationElement"> | ||
| 20 | <meta itemprop="name" content="Article list"> | ||
| 21 | |||
| 22 | <ul class="post-list"> | ||
| 23 | {{range $index, $post := .Posts}} | ||
| 24 | {{if $post.Listing}} | ||
| 25 | <li> | ||
| 26 | <time>{{.CreatedFormatted}}</time> | ||
| 27 | |||
| 28 | <a href="/{{$post.Slug}}" title="{{$post.Title}}" itemprop="url"> | ||
| 29 | <h2>{{$post.Title}}</h2> | ||
| 30 | </a> | ||
| 31 | </li> | ||
| 32 | {{end}} | ||
| 33 | {{end}} | ||
| 34 | </ul> | ||
| 35 | </nav> | ||
| 36 | |||
| 37 | <hr class="top-margin"> | ||
| 38 | |||
| 39 | <section class="project-list"> | ||
| 40 | <h4>Side projects I work/worked on</h4> | ||
| 41 | <ul> | ||
| 42 | <li><a href="https://git.mitjafelicijan.com/journalctl-proxy.git/" target="_blank" rel="noopener nofollow">journalctl-proxy - Exposes your systemd logs to web via web interface</a></li> | ||
| 43 | <li><a href="https://git.mitjafelicijan.com/redis-marshal.git/" target="_blank" rel="noopener nofollow">redis-marshal - Lightweight Redis data exploration tool</a></li> | ||
| 44 | <li><a href="https://git.mitjafelicijan.com/dna-encoding.git/" target="_blank" rel="noopener nofollow">dna-encoding - Tools for encoding files to DNA sequence</a></li> | ||
| 45 | <li><a href="https://git.mitjafelicijan.com/vertex.git/" target="_blank" rel="noopener nofollow">vertex - Create mock API's and add basic logic to simplify prototyping</a></li> | ||
| 46 | <li><a href="https://git.mitjafelicijan.com/scarecrow.git/" target="_blank" rel="noopener nofollow">scarecrow - Minimal configuration reverse proxy</a></li> | ||
| 47 | </ul> | ||
| 48 | </section> | ||
| 49 | |||
| 50 | <hr class="top-margin"> | ||
| 51 | |||
| 52 | {{template "openring-build.html"}} | ||
| 53 | |||
| 54 | </main> | ||
| 55 | |||
| 56 | {{template "_footer.html"}} | ||
| 57 | |||
| 58 | {{template "_includes.html"}} | ||
| 59 | |||
| 60 | </body> | ||
| 61 | |||
| 62 | </html> \ No newline at end of file | ||
