ExtraStatic: powerful and easy publishing

Skip to content
Snippets Groups Projects
Forked from svekyll / svekyll
82 commits behind, 4 commits ahead of the upstream repository.
resume.svelte 305 B
<script>
	import Seo from '$svekyll/Seo.svelte';
	import { seo } from '$svekyll/store';
	export let title;
	export let description;

	$seo = {
		title,
		description
	};
</script>

<Seo />
<slot />

<svelte:head>
	<title>{title}</title>
</svelte:head>

<style>
	.post {
		margin-bottom: 4rem;
	}
</style>