Remove the whole content-generation system since I'm just going to use HTML

master
DavidDGTNT 2022-02-11 01:05:45 +00:00
parent 4f81ca33c8
commit 5393c4a536
7 changed files with 0 additions and 66 deletions

4
content/.gitignore vendored
View File

@ -1,4 +0,0 @@
home.html
about.html
book1.html
book2.html

View File

@ -1,6 +0,0 @@
gen: clean
./generate.sh
gennoclean:
./generate.sh
clean:
./clean.sh

View File

@ -1,16 +0,0 @@
## About the author
David Jentes is a 13 year old programmer, author, speedcuber, and LCS student. He is a member of the programming group KygekTeam and programs various things, including this website. Here is a list of some things he has created:
* Ports of some of the Minecraft plugins made by KygekTeam
* David Calc, plus its GUI, Java, and Mystic Python variants
* Various C++ converters
* His own website
* Content generation script for generating HTML from specified Markdown files
* KygekTermDownload, a downloading program for the terminal to download KygekTeam plugins
David also runs a YouTube channel called DavidDGTNT, where he makes videos on various video games, and another channel called DavidCode, where he codes various things.
## About Lyza
Lyza in real life is David's dog. Lyza barks a lot in David's backyard, and loves to play ball. She is adventurous and will take any chance she gets to go on an adventure. Lyza would love these books if she could read them!

View File

@ -1,11 +0,0 @@
## Lyza the Sheepdog: Christmas
![Lyza the Sheepdog: Christmas cover](../assets/img/book1cover.png)
Hey look, a baby has been born! Wait, what is that star?
In Lyza the Sheepdog: Christmas, Lyza talks to the animals that were at the stable at Jesus' birth. She hears what others are thinking about what's going on, and tries to figure out whats going on herself.
When you read this book, you enter the world of Lyza the Sheepdog, a world where the event of Jesus' birth and all things that came before are the same, and we can see the fictional responses of the animals.
This book was released in December of 2020.

View File

@ -1,11 +0,0 @@
## Lyza the Sheepdog: The Flood
![Lyza the Sheepdog: The Flood cover](../assets/img/book2cover.png)
Hey! Why's there water on my back?
In Lyza the Sheepdog: The Flood, Lyza talks to the animals that were at going to the Ark before the flood. She hears what others are thinking about what's going on, and tries to figure out whats going on herself.
When you read this book, you enter the world of Lyza the Sheepdog, a world where the event of Jesus' birth and all things that came before are the same, and we can see the fictional responses of the animals.
This book was released in December of 2021.

View File

@ -1,9 +0,0 @@
#!/bin/bash
CONTENT[0]="about"
CONTENT[1]="book1"
CONTENT[2]="book2"
for i in {0..2}
do
rm "${CONTENT[i]}.html"
done

View File

@ -1,9 +0,0 @@
#!/bin/bash
CONTENT[0]="about"
CONTENT[1]="book1"
CONTENT[2]="book2"
for i in {0..2}
do
markdown "${CONTENT[i]}.md" > "${CONTENT[i]}.html"
done