From de79cbce9ba71875fa6450b0157917c6295caea2 Mon Sep 17 00:00:00 2001 From: Kenneth Date: Tue, 18 Jun 2024 21:12:25 +0100 Subject: [PATCH] wip --- src/pages/index.astro | 115 ++++++++++++++++++++++++++---------------- 1 file changed, 72 insertions(+), 43 deletions(-) diff --git a/src/pages/index.astro b/src/pages/index.astro index 314163b..9bfa7ce 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,58 +1,87 @@ --- import BaseHead from "../components/BaseHead.astro"; -import Footer from "../components/Footer.astro"; import { SITE_TITLE, SITE_DESCRIPTION } from "../consts"; import Link from "../components/Link.astro"; import FormattedDate from "../components/FormattedDate.astro"; +import LuaLine from "../components/LuaLine.astro"; import { getBlogs } from "../content/blog"; const posts = (await getBlogs()).sort( (a, b) => b.data.pubDate.valueOf() - a.data.pubDate.valueOf(), ); +const currentMonth = new Date().getMonth(); --- - - - - -
-

kennethnym

-
-
-

dumping ground for my thoughts. all opinions are my own.

-

current projects:

-
    -
  • - poly: a language-agnostic, - cross-platform GUI framework for building OS-native applications. -
  • -
  • - nanopack: a zero-runtime, type-safe binary serialization format. -
  • -
  • - starlight launcher: an open-source android launcher with a search-based ui. -
  • -
-

my thoughts:

-
    - { - posts.map((post) => ( -
  • - {post.data.title} - -
  • - )) - } -
-
-
-