aboutsummaryrefslogtreecommitdiff
path: root/themes/simple
diff options
context:
space:
mode:
Diffstat (limited to 'themes/simple')
-rw-r--r--themes/simple/layouts/_default/notes.html4
-rw-r--r--themes/simple/layouts/partials/comments.html4
-rw-r--r--themes/simple/layouts/partials/footer.html4
-rw-r--r--themes/simple/static/css/tailwind.css2
4 files changed, 8 insertions, 6 deletions
diff --git a/themes/simple/layouts/_default/notes.html b/themes/simple/layouts/_default/notes.html
index 616234e..e2672e4 100644
--- a/themes/simple/layouts/_default/notes.html
+++ b/themes/simple/layouts/_default/notes.html
@@ -24,7 +24,9 @@
24 {{ range (where .Site.RegularPages "Section" "notes") }} 24 {{ range (where .Site.RegularPages "Section" "notes") }}
25 <div class="mb-10"> 25 <div class="mb-10">
26 <article class="mb-5 single note" itemscope itemtype="http://schema.org/Article"> 26 <article class="mb-5 single note" itemscope itemtype="http://schema.org/Article">
27 <h2 class="text-xl font-medium notes-heading">{{.Title}}</h2> 27 <a href="{{ .Params.url }}">
28 <h2 class="text-xl font-medium notes-heading">{{.Title}}</h2>
29 </a>
28 <p class="text-gray-600 _italic text-sm flex flex-col md:flex-row gap-1"> 30 <p class="text-gray-600 _italic text-sm flex flex-col md:flex-row gap-1">
29 <time datetime="{{ .Date.Format "2006-01-02" }}" itemprop="datePublished"> 31 <time datetime="{{ .Date.Format "2006-01-02" }}" itemprop="datePublished">
30 {{ .Date.Format "Monday Jan 2, 2006" }} 32 {{ .Date.Format "Monday Jan 2, 2006" }}
diff --git a/themes/simple/layouts/partials/comments.html b/themes/simple/layouts/partials/comments.html
index 4e3c7b6..33cf7b6 100644
--- a/themes/simple/layouts/partials/comments.html
+++ b/themes/simple/layouts/partials/comments.html
@@ -3,7 +3,7 @@
3 3
4 <p class="mb-10"> 4 <p class="mb-10">
5 You can write me an email at 5 You can write me an email at
6 <a href="mailto:m@mitjafelicijan.com" class="underline-offset-2 decoration-1 decoration-wavy underline hover:bg-yellow-100">m@mitjafelicijan.com</a> or catch up with me 6 <a href="mailto:m@mitjafelicijan.com" class="underline-offset-2 underline hover:bg-yellow-100">m@mitjafelicijan.com</a> or catch up with me
7 <a href="https://telegram.me/mitjafelicijan" target="_blank" class="underline-offset-2 decoration-1 decoration-wavy underline hover:bg-yellow-100">on Telegram</a>. 7 <a href="https://telegram.me/mitjafelicijan" target="_blank" class="underline-offset-2 underline hover:bg-yellow-100">on Telegram</a>.
8 </p> 8 </p>
9</section> 9</section>
diff --git a/themes/simple/layouts/partials/footer.html b/themes/simple/layouts/partials/footer.html
index a0c745f..8367f21 100644
--- a/themes/simple/layouts/partials/footer.html
+++ b/themes/simple/layouts/partials/footer.html
@@ -3,10 +3,10 @@
3 <p class="pb-16"> 3 <p class="pb-16">
4 This website does not track you. 4 This website does not track you.
5 Content is made available under the <a href="https://creativecommons.org/licenses/by/4.0/" target="_blank" 5 Content is made available under the <a href="https://creativecommons.org/licenses/by/4.0/" target="_blank"
6 rel="noreferrer" class="underline-offset-2 decoration-1 decoration-wavy underline hover:text-gray-800">CC BY 4.0 6 rel="noreferrer" class="underline-offset-2 underline hover:text-gray-800">CC BY 4.0
7 license</a> unless specified otherwise. 7 license</a> unless specified otherwise.
8 Blog feed is available as <a href="/index.xml" target="_blank" 8 Blog feed is available as <a href="/index.xml" target="_blank"
9 class="underline-offset-2 decoration-1 decoration-wavy underline hover:text-gray-800">RSS feed</a>. 9 class="underline-offset-2 underline hover:text-gray-800">RSS feed</a>.
10 </p> 10 </p>
11</footer> 11</footer>
12 12
diff --git a/themes/simple/static/css/tailwind.css b/themes/simple/static/css/tailwind.css
index cbcd724..53d8798 100644
--- a/themes/simple/static/css/tailwind.css
+++ b/themes/simple/static/css/tailwind.css
@@ -46,7 +46,7 @@ article.single p {
46 46
47/* Links */ 47/* Links */
48article.single a { 48article.single a {
49 @apply underline-offset-2 decoration-1 decoration-wavy underline hover:bg-yellow-100; 49 @apply underline-offset-2 underline hover:bg-yellow-100;
50} 50}
51 51
52/* Blockquote */ 52/* Blockquote */