├── layouts
├── _default
│ ├── list.html
│ └── single.html
├── partials
│ ├── tail.html
│ ├── logo.html
│ ├── menu.html
│ ├── section.html
│ ├── section_list.html
│ ├── menu_page_list.html
│ ├── head.html
│ └── sidebar.html
├── shortcodes
│ ├── block.html
│ ├── anchor.html
│ └── readfile.html
├── index.html
└── 404.html
├── .gitignore
├── images
├── tn.png
└── screenshot.png
├── exampleSite
├── content
│ ├── criticism
│ │ ├── note
│ │ │ └── _index.md
│ │ └── _index.md
│ ├── characters
│ │ ├── _index.md
│ │ ├── kraiklyn.md
│ │ ├── balveda.md
│ │ └── bora.md
│ ├── history
│ │ └── _index.md
│ ├── introduction
│ │ ├── _index.md
│ │ └── code.md
│ └── plot
│ │ └── _index.md
└── config.toml
├── .monova.config
├── archetypes
└── default.md
├── theme.toml
├── LICENSE.md
├── README.md
└── static
└── css
└── styles.css
/layouts/_default/list.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/layouts/_default/single.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .monova.history
2 |
--------------------------------------------------------------------------------
/layouts/partials/tail.html:
--------------------------------------------------------------------------------
1 |