summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSadeep Madurange <sadeep@asciimx.com>2026-01-16 16:23:09 +0800
committerSadeep Madurange <sadeep@asciimx.com>2026-01-16 16:23:09 +0800
commit1517a5cdf8a1a3d57cadc3f363931ace5af06438 (patch)
tree3c5d3ca4a1c2526ca62127805510941c977b74b6
parenta1a9b582bc5909fa90244cb43cce51db14153e2d (diff)
downloadwww-1517a5cdf8a1a3d57cadc3f363931ace5af06438.tar.gz
Make latest post row clickable.
-rw-r--r--_includes/latest.html4
-rw-r--r--assets/css/main.css4
2 files changed, 7 insertions, 1 deletions
diff --git a/_includes/latest.html b/_includes/latest.html
index a6f8e9b..b71216a 100644
--- a/_includes/latest.html
+++ b/_includes/latest.html
@@ -8,10 +8,12 @@
<td class="posts-td posts-td-link">
<a href="{{ post.url }}" class="link-decor-none">{{ post.title }}</a>
</td>
- <td class="posts-td posts-td-time">
+ <td class="posts-td posts-td-link posts-td-time">
+ <a href="{{ post.url }}" class="link-decor-none">
<span class="post-meta">
<time datetime="{{ post.date }}">{{ post.date | date: "%Y-%m-%d" }}</time>
</span>
+ </a>
</td>
</tr>
diff --git a/assets/css/main.css b/assets/css/main.css
index 7f6c84a..6a65a21 100644
--- a/assets/css/main.css
+++ b/assets/css/main.css
@@ -174,6 +174,10 @@ and (min-device-width : 768px) {
vertical-align: top;
}
+.posts-td-link a {
+ display: block;
+}
+
.posts-td-time {
min-width: 100px;
white-space: nowrap;