# vss A static site generator ## Caution vss is still under development and the API is not stable. Be aware that destructive changes will be made if you use it! ## Feature - Create site content with markdown - Easy to use ## Install ``` git clone https://github.com/zztkm/vss.git cd vss v vss.v ``` ## Usage ### Setup contents Currently, be sure to configure the following ``` ❯ tree . ├── about.md ├── config.toml ├── dist │ ├── css │ │ └── main.css │ └── js │ └── main.js ├── index.md ├── layouts │ └── index.html └── static ├── css │ └── main.css └── js └── main.js ``` ❯ cat index.md ```markdown # Open Sea A static site generator - [GitHub](https://github.com/zztkm) [about page](./about.md) ``` ❯ cat config.toml ```toml title = "Open Sea" description = "Takumi Tsuruta's home page" baseUrl = 'https://zztkm.github.io/vss/' ``` ❯ cat layouts/index.html ```html @title @contents ``` Build your site ``` vss build ``` Output ``` ❯ tree dist dist ├── about.html ├── css │ └── main.css ├── index.html └── js └── main.js ``` ❯ cat dist/index.html ```html Open Sea

Open Sea

A static site generator

about page

```