diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..fa4fe23 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +PARSEFUNC=md4tj-parse +CC=emacs --no-site-file --batch -l ./md4tj/md4tj_parse.el --eval + +SITE_ROOT=./site_root + +index: index.md4tj + $(CC) "($(PARSEFUNC) \"index.md4tj\" \"$(SITE_ROOT)/index.html\")" + +about: about.md4tj + $(CC) "($(PARSEFUNC) \"about.md4tj\" \"$(SITE_ROOT)/about.html\")" + +all: index about diff --git a/about.md4tj b/about.md4tj new file mode 100644 index 0000000..77a053f --- /dev/null +++ b/about.md4tj @@ -0,0 +1,10 @@ +@@META charset UTF-8 +@@META name viewport content width=device-width,initial-scale=1.0 +@@TITLE The Jerks - About + +# The Jerks +## About + +@@INCLUDE nav.md4tj + +I was born at a young age. \ No newline at end of file diff --git a/index.md4tj b/index.md4tj index 0bcfad4..931317b 100644 --- a/index.md4tj +++ b/index.md4tj @@ -1,6 +1,11 @@ +@@META charset UTF-8 +@@META name viewport content width=device-width,initial-scale=1.0 +@@TITLE The Jerks - Home + # The Jerks ## Welcome to the official website of The Jerks -Content forthcoming, as I make progress on the website generator -[Git](https://git.thejerks.club) +@@INCLUDE nav.md4tj + +The Jerks is a random place for me to dump my thoughts and my code. Enjoy! diff --git a/nav.md4tj b/nav.md4tj new file mode 100644 index 0000000..d096e3d --- /dev/null +++ b/nav.md4tj @@ -0,0 +1,6 @@ +### [Home](https://www.thejerks.club) +### [About](https://www.thejerks.club/about.html) +### [Opinions](https://www.thejerks.club/opinions.html) +### [Links](https://www.thejerks.club/links.html) +### [Archives](https://www.thejerks.club/archives.html) +### [Git](https://git.thejerks.club) \ No newline at end of file