diff --git a/src/components/IndexPage.astro b/src/components/IndexPage.astro
index 328855f..7b2682e 100644
--- a/src/components/IndexPage.astro
+++ b/src/components/IndexPage.astro
@@ -1,11 +1,7 @@
---
-import {siteConfig} from "@/consts.ts";
import PostList from "@/components/Post/List.astro";
import Pagination from "@/components/Post/Pagination.astro";
import type {Post} from "@/types";
-import PageHeader from "@/components/PageHeader.astro";
-
-const {siteTitle} = siteConfig;
interface Props {
posts: Post[]
@@ -15,42 +11,18 @@ interface Props {
const {posts, page, totalPage} = Astro.props
---
-
-
-
-
+
did you stand too close to the fire?
like a liar looking for forgiveness from a stone.
-
-
-
-
+
+
+
-
-
diff --git a/src/components/Post/List.astro b/src/components/Post/List.astro
index 6ebe24a..03b6481 100644
--- a/src/components/Post/List.astro
+++ b/src/components/Post/List.astro
@@ -67,4 +67,10 @@ const {posts} = Astro.props
.post:hover .arrow {
color: #334155;
}
+
+ @media (max-width: 640px) {
+ .post .d {
+ min-width: 64px;
+ }
+ }
diff --git a/src/consts.ts b/src/consts.ts
index 85cf289..8a47c1b 100644
--- a/src/consts.ts
+++ b/src/consts.ts
@@ -2,5 +2,6 @@ export const siteConfig = {
site: "https://ua42.com",
siteTitle: "Uroboros",
postPageSize: 7,
- description: "Uroboros is a blog about programming, technology, and life."
+ description: "一个人的自留地 ,不欢迎我,也不欢迎你。",
+ git: "https://git.ua42.com"
}
diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro
index cce1a1e..974e2fd 100644
--- a/src/layouts/Layout.astro
+++ b/src/layouts/Layout.astro
@@ -1,6 +1,9 @@
---
import "@/styles/global.css";
import {siteConfig} from "@/consts.ts";
+import PageHeader from "./PageHeader.astro";
+import PageFooter from "./PageFooter.astro";
+
const {siteTitle} = siteConfig;
interface Props {
@@ -28,7 +31,11 @@ const pageTitle = title ? `${title} - ${siteTitle}` : siteTitle;