mirror of
https://github.com/sbrow/thor.git
synced 2026-08-26 11:23:32 -04:00
14 lines
173 B
Odin
14 lines
173 B
Odin
package main
|
|
|
|
import "core:os"
|
|
|
|
main :: proc() {
|
|
site: Site
|
|
init_site(&site, os.args)
|
|
|
|
pages := walk_content(site.content_dir, site.drafts)
|
|
|
|
render_site(pages, site)
|
|
}
|
|
|