aboutsummaryrefslogtreecommitdiff
path: root/themes/simple/layouts/_default
diff options
context:
space:
mode:
Diffstat (limited to 'themes/simple/layouts/_default')
-rw-r--r--themes/simple/layouts/_default/list.html4
-rw-r--r--themes/simple/layouts/_default/notes.html4
2 files changed, 4 insertions, 4 deletions
diff --git a/themes/simple/layouts/_default/list.html b/themes/simple/layouts/_default/list.html
index f92d9c0..6362b0f 100644
--- a/themes/simple/layouts/_default/list.html
+++ b/themes/simple/layouts/_default/list.html
@@ -22,8 +22,8 @@
22 {{ range (where .Site.RegularPages "Section" "posts") }} 22 {{ range (where .Site.RegularPages "Section" "posts") }}
23 <div> 23 <div>
24 <article class="mb-5" itemscope itemtype="http://schema.org/Article"> 24 <article class="mb-5" itemscope itemtype="http://schema.org/Article">
25 <time class="block text-gray-400 font-medium text-xs">{{ .Date.Format "Monday Jan 2, 2006" }}</time> 25 <time class="block text-gray-400 font-medium text-xs mb-1">{{ .Date.Format "Monday Jan 2, 2006" }}</time>
26 <a href="/{{ .Params.url }}" itemprop="url" class="hover:bg-yellow-100" rel="bookmark noopener" aria-label="Opens URL"> 26 <a href="/{{ .Params.url }}" itemprop="url" class="underline" rel="bookmark noopener" aria-label="Opens URL">
27 {{ if .Params.draft }} 27 {{ if .Params.draft }}
28 <span class="bg-orange-600 text-white px-1.5">Draft</span> 28 <span class="bg-orange-600 text-white px-1.5">Draft</span>
29 {{ end }} 29 {{ end }}
diff --git a/themes/simple/layouts/_default/notes.html b/themes/simple/layouts/_default/notes.html
index 02560b0..f624814 100644
--- a/themes/simple/layouts/_default/notes.html
+++ b/themes/simple/layouts/_default/notes.html
@@ -9,7 +9,7 @@
9 <p class="text-gray-600 italic"> 9 <p class="text-gray-600 italic">
10 Notes about things I learn, things I do, things I want to remember, 10 Notes about things I learn, things I do, things I want to remember,
11 but never do. You can subscribe to this 11 but never do. You can subscribe to this
12 <a href="/notes/index.xml" class="underline hover:bg-yellow-100">RSS feed</a> 12 <a href="/notes/index.xml" class="underline">RSS feed</a>
13 which contains only the notes without the blog posts. 13 which contains only the notes without the blog posts.
14 </p> 14 </p>
15 </section> 15 </section>
@@ -28,7 +28,7 @@
28 <ul class="flex flex-wrap gap-2"> 28 <ul class="flex flex-wrap gap-2">
29 {{ range .Site.Taxonomies.tags }} 29 {{ range .Site.Taxonomies.tags }}
30 <li> 30 <li>
31 <a href="{{ .Page.Permalink }}" class="inline-block px-3 py-1 rounded bg-gray-100 hover:bg-yellow-100"> 31 <a href="{{ .Page.Permalink }}" class="inline-block px-3 py-1 rounded bg-gray-100 hover:bg-yellow-200">
32 {{ .Page.Title }} 32 {{ .Page.Title }}
33 </a> 33 </a>
34 </li> 34 </li>