diff options
Diffstat (limited to 'themes/simple/layouts/_default')
| -rw-r--r-- | themes/simple/layouts/_default/list.html | 17 | ||||
| -rw-r--r-- | themes/simple/layouts/_default/single.html | 12 |
2 files changed, 21 insertions, 8 deletions
diff --git a/themes/simple/layouts/_default/list.html b/themes/simple/layouts/_default/list.html index a848fc0..7d9a1d9 100644 --- a/themes/simple/layouts/_default/list.html +++ b/themes/simple/layouts/_default/list.html | |||
| @@ -16,17 +16,24 @@ | |||
| 16 | </ul> | 16 | </ul> |
| 17 | </nav> | 17 | </nav> |
| 18 | 18 | ||
| 19 | <hr class="border-2 border-gray-100 mb-10"> | ||
| 20 | |||
| 19 | <!-- Projects I work on --> | 21 | <!-- Projects I work on --> |
| 20 | <section class="mb-12"> | 22 | <section class="mb-12"> |
| 21 | <h4 class="text-2xl font-bold mb-6">Side projects I worked on</h4> | 23 | <h4 class="text-2xl font-bold mb-6">Side projects I worked on</h4> |
| 22 | <ul class="list-disc ml-6"> | 24 | <ul class="list-disc ml-6"> |
| 23 | <li><a href="https://git.mitjafelicijan.com/journalctl-proxy.git/" target="_blank" rel="noopener nofollow" class="underline hover:bg-yellow-200">journalctl-proxy - Exposes your systemd logs to web via web interface</a></li> | 25 | <li><a href="https://git.mitjafelicijan.com/journalctl-proxy.git/" target="_blank" rel="noopener nofollow" class="hover:bg-yellow-200">journalctl-proxy - Exposes your systemd logs to web via web interface</a></li> |
| 24 | <li><a href="https://git.mitjafelicijan.com/redis-marshal.git/" target="_blank" rel="noopener nofollow" class="underline hover:bg-yellow-200">redis-marshal - Lightweight Redis data exploration tool</a></li> | 26 | <li><a href="https://git.mitjafelicijan.com/redis-marshal.git/" target="_blank" rel="noopener nofollow" class="hover:bg-yellow-200">redis-marshal - Lightweight Redis data exploration tool</a></li> |
| 25 | <li><a href="https://git.mitjafelicijan.com/dna-encoding.git/" target="_blank" rel="noopener nofollow" class="underline hover:bg-yellow-200">dna-encoding - Tools for encoding files to DNA sequence</a></li> | 27 | <li><a href="https://git.mitjafelicijan.com/dna-encoding.git/" target="_blank" rel="noopener nofollow" class="hover:bg-yellow-200">dna-encoding - Tools for encoding files to DNA sequence</a></li> |
| 26 | <li><a href="https://git.mitjafelicijan.com/vertex.git/" target="_blank" rel="noopener nofollow" class="underline hover:bg-yellow-200">vertex - Create mock API's and add basic logic to simplify prototyping</a></li> | 28 | <li><a href="https://git.mitjafelicijan.com/vertex.git/" target="_blank" rel="noopener nofollow" class="hover:bg-yellow-200">vertex - Create mock API's and add basic logic to simplify prototyping</a></li> |
| 27 | <li><a href="https://git.mitjafelicijan.com/scarecrow.git/" target="_blank" rel="noopener nofollow" class="underline hover:bg-yellow-200">scarecrow - Minimal configuration reverse proxy</a></li> | 29 | <li><a href="https://git.mitjafelicijan.com/scarecrow.git/" target="_blank" rel="noopener nofollow" class="hover:bg-yellow-200">scarecrow - Minimal configuration reverse proxy</a></li> |
| 28 | </ul> | 30 | </ul> |
| 29 | </section> | 31 | </section> |
| 30 | 32 | ||
| 33 | <hr class="border-2 border-gray-100 mb-10"> | ||
| 34 | |||
| 35 | <!-- Openring --> | ||
| 36 | {{ partial "openring.html" . }} | ||
| 37 | |||
| 31 | </main> | 38 | </main> |
| 32 | {{ end }} | 39 | {{ end }} |
diff --git a/themes/simple/layouts/_default/single.html b/themes/simple/layouts/_default/single.html index 297d90e..6e85b1b 100644 --- a/themes/simple/layouts/_default/single.html +++ b/themes/simple/layouts/_default/single.html | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | <main aria-role="main" class="container-blog px-6 md:p-0"> | 2 | <main aria-role="main" class="container-blog px-6 md:p-0"> |
| 3 | 3 | ||
| 4 | <!-- Single article --> | 4 | <!-- Single article --> |
| 5 | <article itemtype="http://schema.org/Article" class="mb-12"> | 5 | <article itemtype="http://schema.org/Article" class="single mb-12"> |
| 6 | <header class="mb-6"> | 6 | <header class="mb-6"> |
| 7 | <h1 itemtype="headline" class="text-4xl font-extrabold mb-6">{{.Title}}</h1> | 7 | <h1 itemtype="headline" class="text-4xl font-extrabold mb-6">{{.Title}}</h1> |
| 8 | <time class="text-gray-400 font-medium text-sm">Published on {{ .Date.Format "Monday Jan 2, 2006" }}</time> | 8 | <time class="text-gray-400 font-medium text-sm">Published on {{ .Date.Format "Monday Jan 2, 2006" }}</time> |
| @@ -34,13 +34,19 @@ | |||
| 34 | {{ $randomPosts := shuffle (where .Site.RegularPages "Type" "posts") | first 5 }} | 34 | {{ $randomPosts := shuffle (where .Site.RegularPages "Type" "posts") | first 5 }} |
| 35 | {{ range $randomPosts }} | 35 | {{ range $randomPosts }} |
| 36 | <li class="mb-3"> | 36 | <li class="mb-3"> |
| 37 | <time class="block text-gray-500 text-sm">{{ .Date.Format "Mon Jan 2, 2006" }}</time> | 37 | <time class="block text-gray-400 font-medium text-xs">{{ .Date.Format "Mon Jan 2, 2006" }}</time> |
| 38 | <a href="{{.Permalink}}" itemprop="url" class="hover:bg-yellow-200">{{.Title}}</a> | 38 | <a href="{{.Permalink}}" itemprop="url" class="hover:bg-yellow-200 font-medium">{{.Title}}</a> |
| 39 | <p class="text-gray-600 text-sm">{{.Summary}}</p> | ||
| 39 | </li> | 40 | </li> |
| 40 | {{end}} | 41 | {{end}} |
| 41 | </ul> | 42 | </ul> |
| 42 | </nav> | 43 | </nav> |
| 43 | </section> | 44 | </section> |
| 44 | 45 | ||
| 46 | <hr class="border-2 border-gray-100 mb-10"> | ||
| 47 | |||
| 48 | <!-- Openring --> | ||
| 49 | {{ partial "openring.html" . }} | ||
| 50 | |||
| 45 | </main> | 51 | </main> |
| 46 | {{ end }} | 52 | {{ end }} |
