blob: a566d95a6897d7198ffd06ae8aa8e81941ad4d5e (
plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
<!doctype html>
<html lang="en">
<head>
{{template "_meta.html"}}
<title>{{.Title}}</title>
<meta name="description" content="{{.Description}}">
<meta property="og:title" content="{{.Title}}">
<meta property="og:description" content="{{.Description}}">
</head>
<body>
{{template "_navigation.html"}}
<main class="wrapper">
<h2>Posts</h2>
<nav itemscope itemtype="https://schema.org/SiteNavigationElement">
<meta itemprop="name" content="Article list">
<ul class="post-list">
{{range $index, $post := .Posts}}
{{if $post.Listing}}
<li>
<time>{{.CreatedFormatted}}</time>
<a href="/{{$post.Slug}}" title="{{$post.Title}}" itemprop="url">
<h2>{{$post.Title}}</h2>
</a>
</li>
{{end}}
{{end}}
</ul>
</nav>
<hr class="top-margin">
<section class="project-list">
<h4>Side projects I work on</h4>
<ul>
<li><a href="https://github.com/mitjafelicijan/redis-marshal" target="_blank" rel="noopener nofollow">redis-marshal - Lightweight Redis data exploration tool</a></li>
<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>
<li><a href="https://github.com/mitjafelicijan/unfold" target="_blank" rel="noopener nofollow">unfold - Elastic Beanstalk like deployments for DigitalOcean</a></li>
<li><a href="https://github.com/mitjafelicijan/vertex" target="_blank" rel="noopener nofollow">vertex - Create mock API's and enrich them with some basic logic and simplify prototyping</a></li>
<li><a href="https://github.com/mitjafelicijan/spartan" target="_blank" rel="noopener nofollow">spartan - Spartan minimal UI kit for your applications</a></li>
<li><a href="https://github.com/mitjafelicijan/scarecrow" target="_blank" rel="noopener nofollow">scarecrow - Minimal configuration reverse proxy</a></li>
</ul>
</section>
<hr class="top-margin">
{{template "openring-build.html"}}
</main>
{{template "_includes.html"}}
</body>
</html>
|