all repos — py-vite @ aec18eec50c4225282633f14a75c31aa45723c99

the original vite, written in python

docs: move notes to new subheading
Anirudh icyph0x@pm.me
Sun, 17 Jun 2018 08:48:56 +0530
commit

aec18eec50c4225282633f14a75c31aa45723c99

parent

2148adb74354d28a800a0cde79d818d34833816c

1 files changed, 6 insertions(+), 3 deletions(-)

jump to
M README.mdREADME.md

@@ -57,9 +57,6 @@ Templating

---------- Vite uses Jinja2 templating, so template files must be placed in a separate `templates/` directory. -**NOTE**: Stylesheets, images and JS can be accessed from the `static` folder. -**ANOTHER NOTE**: `index.html`, i.e. your website's homepage, should be `_index.md` in the `pages/` directory. - A basic example would be: ```html <link rel="stylesheet" href="../static/sakura-earthy.css">

@@ -74,6 +71,12 @@ <footer>

{{ footer }} </footer> ``` +### Notes on templating + +- Stylesheets, images and JS can be accessed from the `static` folder. +- `index.html`, i.e. your website's homepage, should be `_index.md` in the `pages/` directory. + + Directory tree --------------