create blog posts from markdown files

This commit is contained in:
Rich Harris
2018-07-27 14:28:32 -04:00
parent 29e6481559
commit 0fa6c9f7d7
10 changed files with 129 additions and 98 deletions

View File

@@ -1,8 +1,8 @@
<svelte:head>
<title>{post.title}</title>
<title>{post.metadata.title}</title>
</svelte:head>
<h1>{post.title}</h1>
<h1>{post.metadata.title}</h1>
<div class='content'>
{@html post.html}