Part 1: Installation
藍+85CD calendar_month update
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:
diff
_config.ts
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