Directory tructure

.
├── config.toml
├── content
├── sass
├── static
├── templates
└── themes

config.toml

content

sass

<!-- 匯入 css -->
<link rel="stylesheet" href={{ $url }}>

<!-- $url 替換如下 -->
get_url(path="site.css")

static

<!-- 匯入網站 icon -->
<link rel="icon" href="{{ $url }}" type="image/x-icon">

<!-- 匯入 javascript -->
<script src="{{ $url }}" defer></script>

<!-- $url 替換如下 -->
get_url(path="favicon.ico")
get_url(path="event.js")

templates

themes

索引