Skip to content

Latest commit

 

History

History
48 lines (30 loc) · 1.01 KB

blog.md

File metadata and controls

48 lines (30 loc) · 1.01 KB

A new blog in under one minute

Create a new blog in few simple steps:

Step 1: create index.md:

```yaml
site_url: https://www.example.org
template: blog.html
syndication: yes
pages: "*"
```

# My new blog

Welcome to my new blog.

Step 2: run ssite show

A browser will open with a preview of your blog.

Step 3: add posts

Create new_post.md and type something into it: as soon as you save it, it will automatically appear in your blog.

Throw in a new_post.jpg to add an image to your new blog post.

Step 4: publish your site

Run ssite build -o built_site

The contents of built_site are ready to be published by any web server.

Next steps