aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--themes/simple/layouts/_default/list.html12
-rw-r--r--themes/simple/layouts/_default/single.html2
-rw-r--r--themes/simple/layouts/partials/header.html12
-rw-r--r--themes/simple/layouts/partials/tailwind.html4
-rw-r--r--themes/simple/openring/openring.html2
5 files changed, 16 insertions, 16 deletions
diff --git a/themes/simple/layouts/_default/list.html b/themes/simple/layouts/_default/list.html
index 7d9a1d9..7870247 100644
--- a/themes/simple/layouts/_default/list.html
+++ b/themes/simple/layouts/_default/list.html
@@ -10,7 +10,7 @@
10 {{ range (where .Site.RegularPages "Section" "posts") }} 10 {{ range (where .Site.RegularPages "Section" "posts") }}
11 <li class="mb-5"> 11 <li class="mb-5">
12 <time class="block text-gray-400 font-medium text-xs">{{ .Date.Format "Monday Jan 2, 2006" }}</time> 12 <time class="block text-gray-400 font-medium text-xs">{{ .Date.Format "Monday Jan 2, 2006" }}</time>
13 <a href="{{.Permalink}}" itemprop="url" class="hover:bg-yellow-200">{{.Title}}</a> 13 <a href="{{.Permalink}}" itemprop="url" class="hover:bg-yellow-100">{{.Title}}</a>
14 </li> 14 </li>
15 {{end}} 15 {{end}}
16 </ul> 16 </ul>
@@ -22,11 +22,11 @@
22 <section class="mb-12"> 22 <section class="mb-12">
23 <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>
24 <ul class="list-disc ml-6"> 24 <ul class="list-disc ml-6">
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> 25 <li><a href="https://git.mitjafelicijan.com/journalctl-proxy.git/" target="_blank" rel="noopener nofollow" class="hover:bg-yellow-100">journalctl-proxy - Exposes your systemd logs to web via web interface</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> 26 <li><a href="https://git.mitjafelicijan.com/redis-marshal.git/" target="_blank" rel="noopener nofollow" class="hover:bg-yellow-100">redis-marshal - Lightweight Redis data exploration tool</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> 27 <li><a href="https://git.mitjafelicijan.com/dna-encoding.git/" target="_blank" rel="noopener nofollow" class="hover:bg-yellow-100">dna-encoding - Tools for encoding files to DNA sequence</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> 28 <li><a href="https://git.mitjafelicijan.com/vertex.git/" target="_blank" rel="noopener nofollow" class="hover:bg-yellow-100">vertex - Create mock API's and add basic logic to simplify prototyping</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> 29 <li><a href="https://git.mitjafelicijan.com/scarecrow.git/" target="_blank" rel="noopener nofollow" class="hover:bg-yellow-100">scarecrow - Minimal configuration reverse proxy</a></li>
30 </ul> 30 </ul>
31 </section> 31 </section>
32 32
diff --git a/themes/simple/layouts/_default/single.html b/themes/simple/layouts/_default/single.html
index c3f100d..77071bb 100644
--- a/themes/simple/layouts/_default/single.html
+++ b/themes/simple/layouts/_default/single.html
@@ -45,7 +45,7 @@
45 {{ range $randomPosts }} 45 {{ range $randomPosts }}
46 <li class="mb-6"> 46 <li class="mb-6">
47 <time class="block text-gray-400 font-medium text-xs">{{ .Date.Format "Mon Jan 2, 2006" }}</time> 47 <time class="block text-gray-400 font-medium text-xs">{{ .Date.Format "Mon Jan 2, 2006" }}</time>
48 <a href="{{.Permalink}}" itemprop="url" class="hover:bg-yellow-200 font-medium">{{.Title}}</a> 48 <a href="{{.Permalink}}" itemprop="url" class="hover:bg-yellow-100 font-medium">{{.Title}}</a>
49 <p class="text-gray-600 text-sm">{{.Summary}}</p> 49 <p class="text-gray-600 text-sm">{{.Summary}}</p>
50 </li> 50 </li>
51 {{end}} 51 {{end}}
diff --git a/themes/simple/layouts/partials/header.html b/themes/simple/layouts/partials/header.html
index 4fefa0d..1e8ee13 100644
--- a/themes/simple/layouts/partials/header.html
+++ b/themes/simple/layouts/partials/header.html
@@ -1,18 +1,18 @@
1<div class="container-blog px-6 md:p-0"> 1<div class="container-blog px-6 md:p-0">
2 <header class="flex py-4 mt-4 mb-6"> 2 <header class="flex py-4 mt-4 mb-6">
3 <h3 class="flex-grow"> 3 <h3 class="flex-grow">
4 <a href="/" itemprop="url" class="text-xl font-bold hover:bg-yellow-200">Mitja Felicijan</a> 4 <a href="/" itemprop="url" class="text-xl font-bold hover:bg-yellow-100">Mitja Felicijan</a>
5 </h3> 5 </h3>
6 6
7 <nav itemscope itemtype="http://schema.org/SiteNavigationElement" class="flex items-center gap-1"> 7 <nav itemscope itemtype="http://schema.org/SiteNavigationElement" class="flex items-center gap-1">
8 <meta itemprop="name" content="Main Menu"> 8 <meta itemprop="name" content="Main Menu">
9 9
10 <a href="https://git.mitjafelicijan.com" target="_blank" rel="noopener nofollow" itemprop="url" class="font-medium px-2 hover:bg-yellow-200">Git</a> 10 <a href="https://git.mitjafelicijan.com" target="_blank" rel="noopener nofollow" itemprop="url" class="font-medium px-2 hover:bg-yellow-100">Git</a>
11 <a href="https://files.mitjafelicijan.com" target="_blank" rel="noopener nofollow" itemprop="url" class="font-medium px-2 hover:bg-yellow-200">Files</a> 11 <a href="https://files.mitjafelicijan.com" target="_blank" rel="noopener nofollow" itemprop="url" class="font-medium px-2 hover:bg-yellow-100">Files</a>
12 <a href="/curriculum-vitae.html" class="font-medium px-2 hover:bg-yellow-200">CV</a> 12 <a href="/curriculum-vitae.html" class="font-medium px-2 hover:bg-yellow-100">CV</a>
13 <a href="/books.html" class="font-medium px-2 hover:bg-yellow-200">Books</a> 13 <a href="/books.html" class="font-medium px-2 hover:bg-yellow-100">Books</a>
14 14
15 <a href="/index.xml" itemprop="url" class="font-medium px-2 hover:bg-yellow-200 hidden md:block">RSS</a> 15 <a href="/index.xml" itemprop="url" class="font-medium px-2 hover:bg-yellow-100 hidden md:block">RSS</a>
16 </nav> 16 </nav>
17 </header> 17 </header>
18</div> 18</div>
diff --git a/themes/simple/layouts/partials/tailwind.html b/themes/simple/layouts/partials/tailwind.html
index 078882c..1c63b0b 100644
--- a/themes/simple/layouts/partials/tailwind.html
+++ b/themes/simple/layouts/partials/tailwind.html
@@ -36,7 +36,7 @@
36 36
37 /* Links */ 37 /* Links */
38 article.single a { 38 article.single a {
39 @apply underline hover:bg-yellow-200; 39 @apply underline hover:bg-yellow-100;
40 } 40 }
41 41
42 /* Blockquote */ 42 /* Blockquote */
@@ -63,7 +63,7 @@
63 63
64 /* Code */ 64 /* Code */
65 article.single code { 65 article.single code {
66 @apply bg-yellow-200 rounded px-2 py-1 text-xs font-medium; 66 @apply bg-yellow-100 rounded px-2 py-1 text-xs font-medium;
67 } 67 }
68 68
69 article.single pre { 69 article.single pre {
diff --git a/themes/simple/openring/openring.html b/themes/simple/openring/openring.html
index a385324..1b3a228 100644
--- a/themes/simple/openring/openring.html
+++ b/themes/simple/openring/openring.html
@@ -5,7 +5,7 @@
5 <section> 5 <section>
6 {{range .Articles}} 6 {{range .Articles}}
7 <article class="mb-6"> 7 <article class="mb-6">
8 <a href="{{.Link}}" target="_blank" rel="noopener" class="font-semibold mb-1 hover:bg-yellow-200">{{.Title}}</a> 8 <a href="{{.Link}}" target="_blank" rel="noopener" class="font-semibold mb-1 hover:bg-yellow-100">{{.Title}}</a>
9 <p class="mb-1 text-gray-600 text-sm">{{.Summary}}</p> 9 <p class="mb-1 text-gray-600 text-sm">{{.Summary}}</p>
10 <div class="text-gray-400 text-xs"> 10 <div class="text-gray-400 text-xs">
11 Via <a href="{{.SourceLink}}" class="underline">{{.SourceTitle}}</a> on {{.Date | datef "January 2, 2006"}} 11 Via <a href="{{.SourceLink}}" class="underline">{{.SourceTitle}}</a> on {{.Date | datef "January 2, 2006"}}