202309090248
This commit is contained in:
parent
6c0644752f
commit
2f488890c3
1 changed files with 32 additions and 6 deletions
|
@ -9,12 +9,38 @@ const { title } = Astro.props;
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="description" content="Astro description" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<meta name="generator" content={Astro.generator} />
|
||||
<title>{title}</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="og:site_name" content="Limbo">
|
||||
<meta name="og:title" content="Limbo">
|
||||
<meta name="og:description" content="A space between.">
|
||||
<meta name="og:type" content="website">
|
||||
<meta name="og:image" content="assets/branding/limboicon.svg">
|
||||
<meta name="theme-color" content="#8bd5ca">
|
||||
<!--<link rel = "icon" href = "assets/branding/limboicon.svg">-->
|
||||
<title>Ouroboros</title>
|
||||
<link rel="stylesheet" href="mybulma/css/mystyles.css">
|
||||
<style>
|
||||
.ascii-art {
|
||||
font-family: monospace;
|
||||
white-space: pre;
|
||||
}
|
||||
a:link {
|
||||
color: #8bd5ca;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: #8aadf4;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #91d7e3;
|
||||
}
|
||||
|
||||
a:active {
|
||||
color: #7dc4e4;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<slot />
|
||||
|
|
Loading…
Reference in a new issue