all repos — py-vite @ ca306bc96a6487624aab797ae07315d8db1d29bb

the original vite, written in python

chore: remove example dir
Anirudh icyph0x@pm.me
Sun, 15 Apr 2018 18:08:02 +0530
commit

ca306bc96a6487624aab797ae07315d8db1d29bb

parent

1992b9c28911d151047cb6fc0a3647c5c124e367

5 files changed, 0 insertions(+), 56 deletions(-)

jump to
D example/build/test_page1/index.html

@@ -1,24 +0,0 @@

-<!DOCTYPE html> -<html> -<header> - some header - <title> - test site - </title> -</header> - -<body> - <h1>hey i'm a test page</h1> - -<p>here's some text</p> - -<p><em>here's some more</em></p> - -<p><strong>bold text</strong></p> - -</body> - -<footer> - copyright icy - <p> © icy </p> -<footer>
D example/config.py

@@ -1,7 +0,0 @@

-# config.py - Vite's configuration script - -title = 'test site' -author = 'icy' -header = 'some header' -footer = 'copyright icy' -
D example/make.py

@@ -1,1 +0,0 @@

-/home/icyphox/code/vite/make.py
D example/pages/test_page1.md

@@ -1,7 +0,0 @@

-# hey i'm a test page - -here's some text - -_here's some more_ - -**bold text**
D example/templates/index.html

@@ -1,17 +0,0 @@

-<!DOCTYPE html> -<html> -<header> - {{ header }} - <title> - {{ title }} - </title> -</header> - -<body> - {{ body }} -</body> - -<footer> - {{ footer }} - <p> © {{ author }} </p> -<footer>