7 lines
222 B
Text
7 lines
222 B
Text
|
---
|
||
|
import BaseHead from './BaseHead.astro';
|
||
|
|
||
|
const { title, description, permalink } = Astro.props;
|
||
|
---
|
||
|
<BaseHead title={title} description={description} permalink={permalink} />
|
||
|
<link rel="stylesheet" href="/blog.css" />
|