dev.yoga

Thoughts, stories, and ideas.

Writing posts

by Gridsome in Getting Started · 3 min read

The starter uses Gridsome's filesystem source plugin, which means blog posts are Markdown files that exist in the /content/posts directory. Creating a new post There are 2 ways you can create a new post with Bleda: Simply add a new, uniquely-named *.md file in the /content/posts ...

Markdown styling

by Gridsome in Markdown · 2 min read

Blog posts in Bleda are written using Markdown. However, you are free to use HTML inside Markdown, for any elements not covered by the spec. Markdown is intended to be as easy-to-read and easy-to-write as is feasible.Readability, however, is emphasized above all else. A Markdown- ...

Organise content with tags

by Gridsome · 1 min read

Tags in Bleda are defined in your posts's Front matter. You can specify them in either YAML format: Or in array format: On archive pages (homepage, tags page, author page), only the first tag will be shown. The single post view will show all tags at the bottom. Slug format Each ...

Adding a post author

in Getting Started · 1 min read

Just like with tags, you can also organise your posts by author. Simply add an author: some-name to your posts' Front Matter, and the author collection and URLs will be automatically generated. Multi-author blogs You can use unique author names to create a 'multi-author' blog. Ch ...

Deploying your site

by Gridsome in Getting Started · 1 min read

Seriously, this is a static site. You could just run gridsome build and then upload the entire dist folder to any web host. Deploy to Netlify 🔥 Simply connect Netlify to your GitHub repo and trigger a site rebuild every time you push to master. Click this wonderful button to get ...