aboutsummaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2023-05-27 20:33:31 +0200
committerMitja Felicijan <mitja.felicijan@gmail.com>2023-05-27 20:33:31 +0200
commitad2f788d90e90b734dab978ff58f4a65e3f1fdcc (patch)
tree734546cda30157dbe84f20e485d6629b1735b151 /themes
parentfb520e3619524c3699e80a4697c728edaa3354a7 (diff)
downloadmitjafelicijan.com-ad2f788d90e90b734dab978ff58f4a65e3f1fdcc.tar.gz
Fixed links in notes
Diffstat (limited to 'themes')
-rw-r--r--themes/simple/layouts/_default/notes.html2
-rw-r--r--themes/simple/layouts/tags/list.html4
2 files changed, 3 insertions, 3 deletions
diff --git a/themes/simple/layouts/_default/notes.html b/themes/simple/layouts/_default/notes.html
index 3474be6..27ac958 100644
--- a/themes/simple/layouts/_default/notes.html
+++ b/themes/simple/layouts/_default/notes.html
@@ -41,7 +41,7 @@
41 {{ range (where .Site.RegularPages "Section" "notes") }} 41 {{ range (where .Site.RegularPages "Section" "notes") }}
42 <div class="mb-10"> 42 <div class="mb-10">
43 <article class="mb-5 single note" itemscope itemtype="http://schema.org/Article"> 43 <article class="mb-5 single note" itemscope itemtype="http://schema.org/Article">
44 <a href="{{ .Params.url }}"> 44 <a href="/{{ .Params.url }}">
45 <h2 class="text-xl font-medium notes-heading">{{.Title}}</h2> 45 <h2 class="text-xl font-medium notes-heading">{{.Title}}</h2>
46 </a> 46 </a>
47 <p class="text-gray-600 _italic text-sm flex flex-col md:flex-row gap-1"> 47 <p class="text-gray-600 _italic text-sm flex flex-col md:flex-row gap-1">
diff --git a/themes/simple/layouts/tags/list.html b/themes/simple/layouts/tags/list.html
index 3aa801b..23706b1 100644
--- a/themes/simple/layouts/tags/list.html
+++ b/themes/simple/layouts/tags/list.html
@@ -31,7 +31,7 @@
31 {{ range .Pages }} 31 {{ range .Pages }}
32 <div class="mb-10"> 32 <div class="mb-10">
33 <article class="mb-5 single note" itemscope itemtype="http://schema.org/Article"> 33 <article class="mb-5 single note" itemscope itemtype="http://schema.org/Article">
34 <a href="{{ .Params.url }}"> 34 <a href="/{{ .Params.url }}">
35 <h2 class="text-xl font-medium notes-heading">{{.Title}}</h2> 35 <h2 class="text-xl font-medium notes-heading">{{.Title}}</h2>
36 </a> 36 </a>
37 <p class="text-gray-600 _italic text-sm flex flex-col md:flex-row gap-1"> 37 <p class="text-gray-600 _italic text-sm flex flex-col md:flex-row gap-1">
@@ -45,7 +45,7 @@
45 <span class="inline-flex flex-row gap-1"> 45 <span class="inline-flex flex-row gap-1">
46 <span>(</span> 46 <span>(</span>
47 {{ range .Params.tags }} 47 {{ range .Params.tags }}
48 <span>{{ . }}</span> 48 <a href="/tags/{{ . | urlize }}.html">{{ . }}</a>
49 {{ end }} 49 {{ end }}
50 <span>)</span> 50 <span>)</span>
51 </span> 51 </span>