alpha
Login
or
Join now
flo-bit.dev
/
blog-template
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
[READ-ONLY] Mirror of https://github.com/flo-bit/blog-template. minimalistic astro blog template
flo-bit.dev/blog-template/
astro
blog
template
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
fix small layout issues
author
Florian
date
2 years ago
(Oct 27, 2024, 2:24 AM +0100)
commit
acae1472
acae147249f044f0bc7632704ddc6862b55868a8
parent
fda5a299
fda5a299a2a03e61a9f13b20b2246b8380394fc2
+3
-3
2 changed files
Expand all
Collapse all
Unified
Split
src
pages
pages
[...index].astro
tags
[...tag]
[...index].astro
+1
-1
src/pages/pages/[...index].astro
View file
Reviewed
···
36
36
<BaseLayout title={SITE_TITLE} description={SITE_DESCRIPTION}>
37
37
<Header active="blog" />
38
38
39
39
-
<main class="mx-auto max-w-2xl lg:max-w-3xl py-16">
39
39
+
<main class="mx-auto max-w-2xl lg:max-w-3xl py-16 px-4">
40
40
<BlogPost>
41
41
<h1>All blog posts</h1>
42
42
<div class="my-14 space-y-16 max-w-3xl not-prose">
+2
-2
src/pages/tags/[...tag]/[...index].astro
View file
Reviewed
···
80
80
" " +
81
81
colorAccentClasses[ACCENT_COLOR]}
82
82
>
83
83
-
<h1 class="inline-flex gap-2 flex-col sm:flex-row sm:items-center">
83
83
+
<h1 class="inline-flex gap-4 flex-col sm:flex-row sm:items-center">
84
84
Posts tagged with <div>
85
85
<p
86
86
-
class="not-prose bold rounded-full inline-block bg-base-200 px-4 py-1.5 text-base-800 dark:bg-base-800 dark:text-base-300 border border-base-300 dark:border-base-700"
86
86
+
class="not-prose bold text-xl rounded-full inline-block bg-base-200 px-4 py-1.5 text-base-800 dark:bg-base-800 dark:text-base-300 border border-base-300 dark:border-base-700"
87
87
>
88
88
{tag}
89
89
</p>