My personal site hosted @ https://indexx.dev

minor: up CSS file revision number

Index c615c9c4 5d7cb85b

Changed files
+27 -30
src
layouts
+27 -30
src/layouts/Layout.astro
···
description?: string;
}
-
const {
-
title,
-
description
-
} = Astro.props;
+
const { title, description } = Astro.props;
---
<!doctype html>
<html lang="en">
-
<head>
-
<!-- META TAGS -->
-
<meta charset="utf-8" />
-
<meta name="viewport" content="width=device-width, initial-scale=1" />
-
<meta name="generator" content={Astro.generator} />
+
<head>
+
<!-- META TAGS -->
+
<meta charset="utf-8" />
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
+
<meta name="generator" content={Astro.generator} />
-
<!-- PUBLIC -->
-
<title>{title}</title>
-
<meta name="title" content={title} />
-
<meta name="site_name" content="hey, I'm Index" />
-
<meta name="description" content={description} />
+
<!-- PUBLIC -->
+
<title>{title}</title>
+
<meta name="title" content={title} />
+
<meta name="site_name" content="hey, I'm Index" />
+
<meta name="description" content={description} />
-
<!-- ICONS -->
-
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
-
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
-
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
-
<link rel="manifest" href="/site.webmanifest">
+
<!-- ICONS -->
+
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
+
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
+
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
+
<link rel="manifest" href="/site.webmanifest" />
-
<!-- RESOURCES -->
-
<link href="/bootstrap.min.css" rel="stylesheet" />
-
<script src="/bootstrap.bundle.min.js" is:inline></script>
-
<link rel="stylesheet" href="/style.css" type="text/css" />
+
<!-- RESOURCES -->
+
<link href="/bootstrap.min.css" rel="stylesheet" />
+
<script src="/bootstrap.bundle.min.js" is:inline></script>
+
<link rel="stylesheet" href="/style.css?v=2" type="text/css" />
-
<!-- MASTODON VERIFICATION -->
-
<link rel="me" href="https://mastodon.social/@indexcard" />
-
</head>
-
<body>
-
<slot />
-
</body>
-
</html>
+
<!-- MASTODON VERIFICATION -->
+
<link rel="me" href="https://mastodon.social/@indexcard" />
+
</head>
+
<body>
+
<slot />
+
</body>
+
</html>