Part 1: Installation

· 1 min

Setup Deno & Lume

As this is a Lume theme, please follow the Deno installation instructions and Lume documentation to install them first.

Install Lume Theme Shiraha

Now that you should have a basic Lume blog, modify _config.ts to use the Shiraha theme:

import lume from 'lume/mod.ts'
+ import lts from 'https://deno.land/x/lume_theme_shiraha/mod.ts'
 
- const site = lume()
+ const site = lume().use(lts())
 
export default site