]> git.dujemihanovic.xyz Git - dujemihanovic.xyz.git/commitdiff
Drop custom summaries and rework post list
authorDuje Mihanović <duje.mihanovic@skole.hr>
Wed, 21 Aug 2024 10:27:03 +0000 (12:27 +0200)
committerDuje Mihanović <duje.mihanovic@skole.hr>
Wed, 21 Aug 2024 10:27:03 +0000 (12:27 +0200)
content/posts/dropping-gitea/index.md
content/posts/first-post/index.md
content/posts/freshrss/index.md
content/posts/matrix-delegation/index.md
content/posts/projects/index.md
content/posts/rss-updates/index.md
content/posts/site-is-now-on-gitea/index.md
content/posts/updating-dendrite/index.md
content/posts/windows-backup/index.md
layouts/posts/list.html

index 0702e0e17d0ef3718ea4f23d125fd4eacb288bb5..7543a02b86a1bf709279cf196590ae56c5e70e3f 100644 (file)
@@ -1,7 +1,6 @@
 ---
 title: "Dropping Gitea"
 date: 2023-08-18T22:44:54+02:00
-summary: I have dropped Gitea for GitWeb.
 ---
 I have decided to drop Gitea as it's only really useful when you have multiple
 people collaborating on a project and is just bloatware otherwise. To
index 6cc4edd4cef8ae6093e5a653fd3f85f877ebad5a..5479484a25a2f54063edfde4754cce03b058c86f 100644 (file)
@@ -1,7 +1,6 @@
 ---
 title: "First Post"
 date: 2023-08-05T21:21:40+02:00
-summary: First post on my new website.
 ---
 This is the first post on my new blog. I don't expect to write much at all, but
 if I do it will most likely be about my experiences with Linux on smartphones
index f88eb4fe54fd8bc9435175a5d9b7030e95dc9dc7..92581f2d895d166da50e5dd953ec81d55e8c8b06 100644 (file)
@@ -1,7 +1,6 @@
 ---
 title: "Software Review: FreshRSS"
 date: 2024-06-08T12:14:37+02:00
-summary: About RSS, its issues and my solution of choice for them.
 ---
 Most RSS users start off with desktop readers such as Newsboat or Akregator in
 order to keep things simple. However, due to certain drawbacks of this approach
index 76324e6dc94cad4e6a9809d18777ae628ca65127..99ba0a78c0bf5a9e0e81cf3cd85b0c92d812cca6 100644 (file)
@@ -1,7 +1,6 @@
 ---
 title: "Matrix delegation and how it may bite you"
 date: 2024-01-14T11:19:48+01:00
-summary: One of the ways small details can cause big issues.
 ---
 For those who don't know, delegation in Matrix is used in server-to-server
 communication to figure out which server serves a given domain. As an example,
index 79e4d2d2899b9b0ebdc6c35822778f617a4d133b..fcf96ff8a6192a49c87b4edb866979708e6559dd 100644 (file)
@@ -1,7 +1,6 @@
 ---
 title: "My projects are now listed on the website"
 date: 2023-09-16T13:15:59+02:00
-summary: "\"echo $title\""
 ---
 I have created a [new section](/projects) of the site dedicated to my projects.
 Currently the section numbers one whole project, that being [my effort to get
index 2194e5051b2be61e12ad15be613d1c0ac21888fb..d59af8e1b3c4450b7d4ca51f6055118b2d7d6eba 100644 (file)
@@ -1,7 +1,6 @@
 ---
 title: "RSS updates"
 date: 2023-08-30T18:55:52+02:00
-summary: Small changes to the RSS feed.
 ---
 I have made some small, but important changes to the way the RSS feed of the site
 is generated.
index 4ce5d8dfb9da62ad2a30e1bfed1ebb5f0ddc2cb6..3e69baf62511053713fc0d46f646c44a0b8c806b 100644 (file)
@@ -1,7 +1,6 @@
 ---
 title: "Site is now on Gitea"
 date: 2023-08-06T19:27:40+02:00
-summary: The site's source code is now on Gitea.
 ---
 Even though the site is still nothing special,
 I have published its source code on
index 6222dcb8cdb9f9ad9dbfdc966028e4ed259f94b9..e44eca161e8a76f0dd37419aff3f0899418764ef 100644 (file)
@@ -1,7 +1,6 @@
 ---
 title: "Updating/installing Dendrite"
 date: 2023-08-24T16:41:53+02:00
-summary: How to update/install Dendrite when you don't have a recent enough Golang on your server.
 ---
 I decided to share the method I just devised for updating (and perhaps
 installing) Dendrite on my VPS.
index 9910e7529aa0bd7057c739fa1b635b87d7bd3e55..d8020a7c45f09cbaf6955098bf58760dce79d5b0 100644 (file)
@@ -1,7 +1,6 @@
 ---
 title: "Windows Backup fails with 0x81000037? Check your filesystem"
 date: 2023-08-17T17:58:49+02:00
-summary: A weird issue with Windows Backup and how I fixed it.
 ---
 ## The Problem
 Yesterday, in preparation for a "downgrade" to Windows 10 from 11, I was trying
index 751a0675355954505bf56f58506601216256496b..25364150023ca06d0c037cd4920237b578915b4b 100644 (file)
@@ -3,8 +3,12 @@
 <ul>
 {{ range .Pages }}
        <li>
-               <a href="{{ .RelPermalink }}">{{ .Title }}</a> - {{ .Date.Format "January 2, 2006" }}</a><br>
+               <a href="{{ .RelPermalink }}">{{ .Title }}</a> - {{ .Date.Format "January 2, 2006" }} - {{ .ReadingTime }} minute read<br>
                {{ .Summary }}
+               {{ if .Truncated }}
+               <br>
+               <a href="{{ .RelPermalink }}">Read full article...</a>
+               {{ end }}
        </li>
 {{ end }}
 </ul>