diff --git a/content/.gitignore b/content/.gitignore new file mode 100644 index 0000000..31535fb --- /dev/null +++ b/content/.gitignore @@ -0,0 +1,4 @@ +home.html +about.html +book1.html +book2.html \ No newline at end of file diff --git a/content/Makefile b/content/Makefile new file mode 100644 index 0000000..45fc78b --- /dev/null +++ b/content/Makefile @@ -0,0 +1,4 @@ +gen: + ./generate.sh +clean: + ./clean.sh \ No newline at end of file diff --git a/content/about.md b/content/about.md new file mode 100644 index 0000000..e69de29 diff --git a/content/book1.md b/content/book1.md new file mode 100644 index 0000000..e69de29 diff --git a/content/book2.md b/content/book2.md new file mode 100644 index 0000000..e69de29 diff --git a/content/clean.sh b/content/clean.sh new file mode 100755 index 0000000..ff37044 --- /dev/null +++ b/content/clean.sh @@ -0,0 +1,10 @@ +#!/bin/bash +CONTENT[0]="home" +CONTENT[1]="about" +CONTENT[2]="book1" +CONTENT[3]="book2" + +for i in {0..3} +do + rm "${CONTENT[i]}.html" +done \ No newline at end of file diff --git a/content/generate.sh b/content/generate.sh new file mode 100755 index 0000000..0a3d2a7 --- /dev/null +++ b/content/generate.sh @@ -0,0 +1,11 @@ +#!/bin/bash +CONTENT[0]="home" +CONTENT[1]="about" +CONTENT[2]="book1" +CONTENT[3]="book2" + +for i in {0..3} +do + rm "${CONTENT[i]}.html" + markdown "${CONTENT[i]}.md" > "${CONTENT[i]}.html" +done \ No newline at end of file diff --git a/content/home.md b/content/home.md new file mode 100644 index 0000000..3300744 --- /dev/null +++ b/content/home.md @@ -0,0 +1,12 @@ +## Travel back in time + +With the Lyza the Sheepdog series of books, you can go back in time and see what the animals in the time of Bible stories with animals thought about the events and what they thought was happening. You can learn more about the books on their respective pages accessible in the Books section of the title bar. + +## Where to buy Lyza the Sheepdog books: + +* David Book Stores +* Barnes and Noble +* Books a Million +* Walmart +* SlushCo +* Target \ No newline at end of file