all repos — py-vite @ fc9ef9169086b475c9f063ca20c3ea78daac90f8

the original vite, written in python

refactor(make.py): rename template file to index.html
icyphox icyph0x@protonmail.com
Sat, 17 Mar 2018 19:09:58 +0530
commit

fc9ef9169086b475c9f063ca20c3ea78daac90f8

parent

997667db55fcd0fed5d73ba99cc452333df790ce

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

jump to
M make.pymake.py

@@ -35,7 +35,7 @@ return html_text

def main(): - template_file = TEMPL_PATH + '/template.html' + template_file = TEMPL_PATH + '/index.html' for page in os.listdir(PAGES_PATH): html_text = markdown_render(page) html_file = os.path.splitext(page)[0] + '.html'