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.

34 lines
962 B

---
import '../css/base.scss'
import '../css/font.scss'
import '../css/color.scss'
const {content} = Astro.props;
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>{content.title}</title>
<meta property="og:type" content="article">
<meta property="og:title" content={content.title}/>
<meta property="og:description" content={content.description}/>
<meta property="og:url" content={canonicalURL}/>
</head>
<body>
<h2>{content.title}</h2>
<h3>{content.description}</h3>
<slot />
<div style="position:relative;margin-bottom:105px;"></div>
<div id="footer" class="white">
<footer class="white footer">
<p>
<center>
<a href="/blog" class="grey padding">Back to Blog Home</a>
</center>
</p>
</footer>
</div>
</body>
</html>