aboutsummaryrefslogtreecommitdiff
path: root/themes/simple/layouts/_default/notes.html
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2023-05-24 07:42:11 +0200
committerMitja Felicijan <mitja.felicijan@gmail.com>2023-05-24 07:42:11 +0200
commitb7f52d3e21fa581c75e0e216c2829e112b52d0e1 (patch)
tree34f5f6df8f64d1af67d673d2f3e3581a227c95fd /themes/simple/layouts/_default/notes.html
parent7ff6134fc1350a3426f386f0d812221f6e2ab8d9 (diff)
downloadmitjafelicijan.com-b7f52d3e21fa581c75e0e216c2829e112b52d0e1.tar.gz
Fixed mobile styling
Diffstat (limited to 'themes/simple/layouts/_default/notes.html')
-rw-r--r--themes/simple/layouts/_default/notes.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/themes/simple/layouts/_default/notes.html b/themes/simple/layouts/_default/notes.html
index 268a1ce..1aab40f 100644
--- a/themes/simple/layouts/_default/notes.html
+++ b/themes/simple/layouts/_default/notes.html
@@ -21,12 +21,13 @@
21 <div class="mb-10"> 21 <div class="mb-10">
22 <article class="mb-5 single note" itemscope itemtype="http://schema.org/Article"> 22 <article class="mb-5 single note" itemscope itemtype="http://schema.org/Article">
23 <h2 class="text-xl font-medium notes-heading">{{.Title}}</h2> 23 <h2 class="text-xl font-medium notes-heading">{{.Title}}</h2>
24 <p class="text-gray-600 _italic text-sm"> 24 <p class="text-gray-600 _italic text-sm flex flex-col md:flex-row gap-1">
25 <time datetime="{{ .Date.Format "2006-01-02" }}" itemprop="datePublished"> 25 <time datetime="{{ .Date.Format "2006-01-02" }}" itemprop="datePublished">
26 {{ .Date.Format "Monday Jan 2, 2006" }} 26 {{ .Date.Format "Monday Jan 2, 2006" }}
27 </time> 27 </time>
28 28
29 {{ if .Params.tags }} 29 {{ if .Params.tags }}
30 <span class="hidden md:inline-block">
30 <span>with tags</span> 31 <span>with tags</span>
31 <span class="inline-flex flex-row gap-1"> 32 <span class="inline-flex flex-row gap-1">
32 <span>(</span> 33 <span>(</span>
@@ -35,6 +36,7 @@
35 {{ end }} 36 {{ end }}
36 <span>)</span> 37 <span>)</span>
37 </span> 38 </span>
39 </span>
38 {{ end }} 40 {{ end }}
39 <div class="content"> 41 <div class="content">
40 {{ .Content | safeHTML }} 42 {{ .Content | safeHTML }}