diff --git a/README.md b/README.md index a262caa..c06b3b9 100644 --- a/README.md +++ b/README.md @@ -26,12 +26,22 @@ Currently, be sure to configure the following ``` ❯ tree . +├── about.md ├── config.toml ├── dist -│ └── index.html +│ ├── css +│ │ └── main.css +│ └── js +│ └── main.js ├── index.md -└── layouts - └── _index.html +├── layouts +│ └── index.html +└── static + ├── css + │ └── main.css + └── js + └── main.js + ``` ❯ cat index.md @@ -41,21 +51,28 @@ Currently, be sure to configure the following 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 +❯ cat layouts/index.html ```html @title + + + @contents @@ -63,18 +80,19 @@ title = "Open Sea" Build your site ``` -vss +vss build ``` -### Output - +Output ``` -❯ tree -. -├── dist -│ └── index.html -├── index.md -└── vss +❯ tree dist +dist +├── about.html +├── css +│ └── main.css +├── index.html +└── js + └── main.js ``` ❯ cat dist/index.html @@ -83,13 +101,17 @@ vss - tsurutatakumi.info + Open Sea + + +

Open Sea

A static site generator

+

about page

``` \ No newline at end of file