aboutsummaryrefslogtreecommitdiffstats
path: root/includes
diff options
context:
space:
mode:
author2024-12-15 14:34:00 +0530
committer2024-12-15 14:34:00 +0530
commite1634059a75054c8f7dcc5ece66d1222fb18597c (patch)
tree4b58bae881fb11c649f97f91ace6c6f96ab93a25 /includes
parentDeal with inaccesible public dir and missing sitemap (diff)
downloadsudomsg-e1634059a75054c8f7dcc5ece66d1222fb18597c.tar
sudomsg-e1634059a75054c8f7dcc5ece66d1222fb18597c.tar.gz
sudomsg-e1634059a75054c8f7dcc5ece66d1222fb18597c.tar.bz2
sudomsg-e1634059a75054c8f7dcc5ece66d1222fb18597c.tar.lz
sudomsg-e1634059a75054c8f7dcc5ece66d1222fb18597c.tar.xz
sudomsg-e1634059a75054c8f7dcc5ece66d1222fb18597c.tar.zst
sudomsg-e1634059a75054c8f7dcc5ece66d1222fb18597c.zip
Updated deps
Diffstat (limited to 'includes')
-rw-r--r--includes/base.html2
-rw-r--r--includes/main.css3
-rw-r--r--includes/page.html2
-rw-r--r--includes/post.html7
4 files changed, 6 insertions, 8 deletions
diff --git a/includes/base.html b/includes/base.html
index 90fc167..60e2b72 100644
--- a/includes/base.html
+++ b/includes/base.html
@@ -44,4 +44,4 @@
</footer>
</body>
-</html>
+</html> \ No newline at end of file
diff --git a/includes/main.css b/includes/main.css
index d1bfb19..0c3f6ad 100644
--- a/includes/main.css
+++ b/includes/main.css
@@ -39,7 +39,6 @@ canvas {
picture {
display: contents;
-
}
@media screen {
@@ -68,6 +67,7 @@ picture {
padding: 1rem;
font-weight: bolder;
background-color: darkred;
+ color: white;
& *:any-link {
text-decoration: none;
@@ -93,7 +93,6 @@ picture {
}
-
}
@media (forced-colors: active) {
diff --git a/includes/page.html b/includes/page.html
index 2439e37..be4f0e0 100644
--- a/includes/page.html
+++ b/includes/page.html
@@ -6,4 +6,4 @@
<article>
<h1 @text="title"></h1>
<template @html="content" webc:nokeep />
-</article>
+</article> \ No newline at end of file
diff --git a/includes/post.html b/includes/post.html
index baecde7..040e7ce 100644
--- a/includes/post.html
+++ b/includes/post.html
@@ -6,14 +6,13 @@
<article itemscope :itemtype="schema('BlogPosting')">
<h1 @text="title"></h1>
<small>
- <time :datetime="htmlDateString(page.date)" itemprop="datePublished"
- @text="readableDate(page.date)"></time>
+ <time :datetime="htmlDateString(page.date)" itemprop="datePublished" @text="readableDate(page.date)"></time>
- <span itemprop="author" itemscope :itemtype="schema('Person')">
<a :href="metadata.author.url" rel="author" itemprop="url">
<span itemprop="name" @text="metadata.author.name"></span>
</a>
</span>
</small>
- <p><small itemprop="abstract" @content="(description"></small></p>
+ <p><small itemprop="abstract" @content="description"></small></p>
<div itemprop="articleBody" @html="content" />
-</article>
+</article> \ No newline at end of file