Simple markdown (*.md) powered blog posts with Sapper and Svelte.
🧷 Hompage
To run cypress locally follow the setup instructions! Then open terminal run:
$ › git clone https://github.com/blogmops/blogmops
$ › cd blogmops
$ › yarn install
$ › yarn run dev
$ › yarn run build
$ › yarn run start
$ › yarn run export
$ › npx serve __sapper__/export
Open up localhost:3000 and start clicking around. Consult sapper.svelte.dev for help getting started.
The base structure of this template is the same as Sapper's default template. These are some of the new things you'll find here:
This is the home of your blog. The most important file in here is [slug].svelte
, which this is template of your blog post page.
This is where your markdown posts live in. All .md
files in this directory are treated as blog posts and will be parsed automatically.
- The markdown file name becomes the post slug. For example
mypost.md
becomeshttp://localhost:3000/blog/mypost
. - Everything between the start of the post and the
<!-- more -->
tag becomes the article's "excerpt". - Frontmatter properties supported are
title
anddate
.
Fork and import this repo on vercel.com.
Sapper is in early development, and may have the odd rough edge here and there. Please be vocal over on the Sapper issue tracker.