Create a Simple blog in 5 Minutes
by Santhosh Veer
1 min read
Create a Simple blog in 5 Minutes using lume the static site generator for deno.
- Free and Open Source
- Host it on any Free static site Hosting services
- Easy to setup
- less time for setup and spend more time for content creation
Setup
- Github account
- setup any static site Hosting services for host the website and content
- Connect github and Hosting services for auto deployment
- lume theme - https://github.com/lumeland/theme-simple-blog
Create Blog
- Refer this repo for blog setup - https://github.com/lumeland/theme-simple-blog/tree/main/demo
import lume from "lume/mod.ts";
import blog from "https://deno.land/x/lume_theme_simple_blog@v0.10.2/mod.ts";
const site = lume();
site.use(blog());
export default site;
- Post your content on
/posts
folder - push and deploy to github and it also deploy and build content to Hosting services
- Done
it does not take much time to set up but it takes a few more minutes to understand the site setup and deployment.