aboutsummaryrefslogtreecommitdiff
path: root/src/pages/index.astro
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2024-02-09 15:19:53 +0000
committerAndrew Lee <alee14498@protonmail.com>2024-02-09 15:19:53 +0000
commitf38935fe06d823069a124185356c1d59f741ee8e (patch)
tree5a437420f818dbaaeec3b36fb7fc4cc5708b2568 /src/pages/index.astro
parent87545a1389d1ebc93b020ce7c5df671a9e105f84 (diff)
downloadpersonal-website-f38935fe06d823069a124185356c1d59f741ee8e.tar.gz
personal-website-f38935fe06d823069a124185356c1d59f741ee8e.tar.bz2
personal-website-f38935fe06d823069a124185356c1d59f741ee8e.zip
Tweaks
Diffstat (limited to 'src/pages/index.astro')
-rw-r--r--src/pages/index.astro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pages/index.astro b/src/pages/index.astro
index 35ed847..b87e151 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -6,7 +6,7 @@ import { getCollection } from "astro:content";
import Profile from '../images/Alee.png';
import '../styles/index.css';
-import {formatDate} from "../util";
+import { formatDate } from "../util";
const allBlogPosts = (await getCollection('blog')).sort((a, b) => b.data.pubDate.valueOf() - a.data.pubDate.valueOf()).slice(0, 10);
---