all repos — py-vite @ c0dd14ec113a053d5d4b0267a6ee171fd1c9e8fb

the original vite, written in python

docs: template file option in config.py
icyphox icyph0x@protonmail.com
Thu, 22 Mar 2018 15:52:51 +0530
commit

c0dd14ec113a053d5d4b0267a6ee171fd1c9e8fb

parent

fa3d13e7744dae67e26b39acac477bc1fedb73e7

2 files changed, 2 insertions(+), 1 deletions(-)

jump to
M README.mdREADME.md

@@ -38,6 +38,7 @@ title = ''

author = '' header = '' footer = '' +template = 'index.html' # default is index.html ``` Templating
M vite/vite.pyvite/vite.py

@@ -54,7 +54,7 @@ title = ''

author = '' header = '' footer = '' -template = 'index.html' # name of template +template = 'index.html' # default is index.html """)