diff --git a/content/.gitignore b/content/.gitignore deleted file mode 100644 index 31535fb..0000000 --- a/content/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -home.html -about.html -book1.html -book2.html \ No newline at end of file diff --git a/content/Makefile b/content/Makefile deleted file mode 100644 index f81af68..0000000 --- a/content/Makefile +++ /dev/null @@ -1,6 +0,0 @@ -gen: clean - ./generate.sh -gennoclean: - ./generate.sh -clean: - ./clean.sh \ No newline at end of file diff --git a/content/about.md b/content/about.md deleted file mode 100644 index 4ad5331..0000000 --- a/content/about.md +++ /dev/null @@ -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! \ No newline at end of file diff --git a/content/book1.md b/content/book1.md deleted file mode 100644 index 736afad..0000000 --- a/content/book1.md +++ /dev/null @@ -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. \ No newline at end of file diff --git a/content/book2.md b/content/book2.md deleted file mode 100644 index 61d4b0b..0000000 --- a/content/book2.md +++ /dev/null @@ -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. \ No newline at end of file diff --git a/content/clean.sh b/content/clean.sh deleted file mode 100755 index 154e68e..0000000 --- a/content/clean.sh +++ /dev/null @@ -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 \ No newline at end of file diff --git a/content/generate.sh b/content/generate.sh deleted file mode 100755 index 5687256..0000000 --- a/content/generate.sh +++ /dev/null @@ -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 \ No newline at end of file