You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
967 B

---
import "../css/base.scss";
import "../css/font.scss";
import "../css/color.scss";
import Footer from "../components/footer.astro";
const post = Astro.props.frontmatter;
const canonicalURL = new URL(Astro.url.pathname, Astro.site);
---
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>{post.title}</title>
<meta property="og:type" content="article" />
<meta property="og:title" content={post.title} />
<meta property="og:description" content={post.description} />
<meta property="og:url" content={canonicalURL} />
</head>
<body class="blog-content">
<h2>{post.title}</h2>
<h3>{post.description}</h3>
<slot />
<div style="position:relative;margin-bottom:105px;"></div>
<Footer
entries={{
"Back to Blog Home": "/blog",
}}
/>
</body>
</html>