mirror of
https://github.com/Xevion/undefined.behavio.rs.git
synced 2025-12-13 06:13:23 -06:00
Fix layout classes, add titles to tag & 404 pages
This commit is contained in:
@@ -31,7 +31,7 @@ const title =
|
|||||||
<link rel="alternate" type="application/xml" href="/feed.xml" />
|
<link rel="alternate" type="application/xml" href="/feed.xml" />
|
||||||
<ViewTransitions />
|
<ViewTransitions />
|
||||||
</head>
|
</head>
|
||||||
<body class="flex-col align-middle w-full max-w-full">
|
<body class="flex flex-col w-full max-w-full min-h-screen">
|
||||||
<slot />
|
<slot />
|
||||||
</body><!-- <script type="text/javascript">
|
</body><!-- <script type="text/javascript">
|
||||||
Is all of this too much effort to make the animation play in just the right way?
|
Is all of this too much effort to make the animation play in just the right way?
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ const { title } = Astro.props;
|
|||||||
<div class="max-w-screen-lg">
|
<div class="max-w-screen-lg">
|
||||||
<slot name="default" />
|
<slot name="default" />
|
||||||
</div>
|
</div>
|
||||||
<p class="text-center">
|
<footer class="text-center">
|
||||||
<a href="/feed.xml">RSS</a>
|
<a href="/feed.xml">RSS</a>
|
||||||
|
|
|
|
||||||
<a href={`${repository_url}/commit/${build_revision}`}>
|
<a href={`${repository_url}/commit/${build_revision}`}>
|
||||||
@@ -38,5 +38,5 @@ const { title } = Astro.props;
|
|||||||
>#{build_revision.slice(0, 7)}</span
|
>#{build_revision.slice(0, 7)}</span
|
||||||
>
|
>
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</footer>
|
||||||
</Base>
|
</Base>
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import Base from "@layouts/Base.astro";
|
|||||||
import Header from "@components/Header.astro";
|
import Header from "@components/Header.astro";
|
||||||
---
|
---
|
||||||
|
|
||||||
<Base>
|
<Base title="404">
|
||||||
<div class="h-screen flex items-center">
|
<div class="h-screen flex items-center">
|
||||||
<div class="flex flex-col items-center">
|
<div class="flex flex-col items-center">
|
||||||
<Header className="!text-7xl" text="404" />
|
<Header className="!text-7xl" text="404" />
|
||||||
|
|||||||
@@ -10,6 +10,6 @@ export async function getStaticPaths() {
|
|||||||
|
|
||||||
const { tag } = Astro.props;
|
const { tag } = Astro.props;
|
||||||
---
|
---
|
||||||
<General>
|
<General title={`${tag} posts`}>
|
||||||
{ tag }
|
{ tag }
|
||||||
</General>
|
</General>
|
||||||
Reference in New Issue
Block a user