aboutsummaryrefslogtreecommitdiff
path: root/template/index.html
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2022-08-14 17:25:43 +0200
committerMitja Felicijan <mitja.felicijan@gmail.com>2022-08-14 17:25:43 +0200
commitdecde989ff7614dc109af1fb42559ff4814ffc7c (patch)
treec048abd48246a239b007ccdb589cff609e151a25 /template/index.html
parent5bcf488adc75256e53b59fa42cdd0407020bff8d (diff)
downloadmitjafelicijan.com-decde989ff7614dc109af1fb42559ff4814ffc7c.tar.gz
Removed search from the blog
Diffstat (limited to 'template/index.html')
-rwxr-xr-xtemplate/index.html90
1 files changed, 44 insertions, 46 deletions
diff --git a/template/index.html b/template/index.html
index cb334e1..9196940 100755
--- a/template/index.html
+++ b/template/index.html
@@ -1,64 +1,62 @@
1<!doctype html> 1<!doctype html>
2<html lang="en"> 2<html lang="en">
3 3
4 <head> 4<head>
5 {{template "_meta.html"}} 5 {{template "_meta.html"}}
6 6
7 <title>{{.Title}}</title> 7 <title>{{.Title}}</title>
8 <meta name="description" content="{{.Description}}"> 8 <meta name="description" content="{{.Description}}">
9 <meta property="og:title" content="{{.Title}}"> 9 <meta property="og:title" content="{{.Title}}">
10 <meta property="og:description" content="{{.Description}}"> 10 <meta property="og:description" content="{{.Description}}">
11 </head> 11</head>
12 12
13 <body> 13<body>
14 14
15 {{template "_navigation.html"}} 15 {{template "_navigation.html"}}
16 16
17 <main class="wrapper"> 17 <main class="wrapper">
18 <h2>Blog posts</h2> 18 <h2>Blog posts</h2>
19 <nav itemscope itemtype="https://schema.org/SiteNavigationElement"> 19 <nav itemscope itemtype="https://schema.org/SiteNavigationElement">
20 <meta itemprop="name" content="Article list"> 20 <meta itemprop="name" content="Article list">
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>
36 36
37 <hr class="top-margin"> 37 <hr class="top-margin">
38 38
39 <section class="project-list"> 39 <section class="project-list">
40 <h4>Side projects I work/worked on</h4> 40 <h4>Side projects I work/worked on</h4>
41 <ul> 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> 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> 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> 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> 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> 46 <li><a href="https://git.mitjafelicijan.com/scarecrow.git/" target="_blank" rel="noopener nofollow">scarecrow - Minimal configuration reverse proxy</a></li>
47 </ul> 47 </ul>
48 </section> 48 </section>
49 49
50 <hr class="top-margin"> 50 <hr class="top-margin">
51 51
52 {{template "openring-build.html"}} 52 {{template "openring-build.html"}}
53 53
54 </main> 54 </main>
55 55
56 {{template "_footer.html"}} 56 {{template "_footer.html"}}
57 57
58 {{template "_includes.html"}} 58 {{template "_includes.html"}}
59 59
60 {{template "_search.html"}} 60</body>
61 61
62 </body> 62</html> \ No newline at end of file
63
64</html>