blob: 57168a494a5ed32dae28b9a96a29225132caa40c (
plain) (
blame)
1
2
3
4
5
6
7
|
---
import BaseHead from './BaseHead.astro';
const { title, description, canonicalURL } = Astro.props;
---
<BaseHead title={title} description={description} canonicalURL={canonicalURL} />
<link rel="stylesheet" href={Astro.resolve('../../scss/blog.css')} />
|