chore: remove example dir
Anirudh icyph0x@pm.me
Sun, 15 Apr 2018 18:08:02 +0530
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/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>