diff options
| author | Mitja Felicijan <m@mitjafelicijan.com> | 2023-07-03 01:38:05 +0200 |
|---|---|---|
| committer | Mitja Felicijan <m@mitjafelicijan.com> | 2023-07-03 01:38:05 +0200 |
| commit | b097ad035a089076b6cf1f1e9c7f648439d9b073 (patch) | |
| tree | 1d06a44f4d6ec551c67ed72a4b7136ae59602e8a /themes/simple/openring | |
| parent | 71b7c639fa0b4ffe7425ec9bd6c3b0fef08b0028 (diff) | |
| download | mitjafelicijan.com-b097ad035a089076b6cf1f1e9c7f648439d9b073.tar.gz | |
Bunch of CSS improvements
Diffstat (limited to 'themes/simple/openring')
| -rw-r--r-- | themes/simple/openring/openring.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/themes/simple/openring/openring.html b/themes/simple/openring/openring.html index 8bc92f5..2ed2a86 100644 --- a/themes/simple/openring/openring.html +++ b/themes/simple/openring/openring.html | |||
| @@ -1,11 +1,11 @@ | |||
| 1 | <section class="mb-10"> | 1 | <section class="mb-10"> |
| 2 | <h2 class="text-2xl font-bold mb-6">Articles from blogs I follow around the net</h2> | 2 | <h2 class="text-2xl font-bold mb-6">Articles from blogs I follow around the net</h2> |
| 3 | 3 | ||
| 4 | <section> | 4 | <section class="grid md:grid-cols-2 gap-10"> |
| 5 | {{ range .Articles }} | 5 | {{ range .Articles }} |
| 6 | <article class="mb-6"> | 6 | <article class="flex flex-col gap-1"> |
| 7 | <a href="{{ .Link }}" target="_blank" rel="noopener" class="font-medium mb-1 hover:bg-yellow-100">{{ .Title }}</a> | 7 | <a href="{{ .Link }}" target="_blank" rel="noopener" class="font-medium rounded underline">{{ .Title }}</a> |
| 8 | <p class="mb-1 text-sm text-gray-600">{{ .Summary }}</p> | 8 | <p class="text-sm text-gray-600">{{ .Summary }}</p> |
| 9 | <div class="text-gray-500 font-medium text-xs"> | 9 | <div class="text-gray-500 font-medium text-xs"> |
| 10 | Via <a href="{{ .SourceLink }}" class="underline">{{ .SourceTitle }}</a> | 10 | Via <a href="{{ .SourceLink }}" class="underline">{{ .SourceTitle }}</a> |
| 11 | on {{ .Date | datef "January 2, 2006" }} | 11 | on {{ .Date | datef "January 2, 2006" }} |
| @@ -17,4 +17,4 @@ | |||
| 17 | <p class="text-sm text-gray-500"> | 17 | <p class="text-sm text-gray-500"> |
| 18 | <a href="https://git.sr.ht/~sircmpwn/openring" class="no-underline hover:underline">Generated with openring.</a> | 18 | <a href="https://git.sr.ht/~sircmpwn/openring" class="no-underline hover:underline">Generated with openring.</a> |
| 19 | </p> | 19 | </p> |
| 20 | </section> \ No newline at end of file | 20 | </section> |
