Added about page, nav stuff

This commit is contained in:
j4nk 2022-12-31 21:26:46 -05:00
parent 2b3a6799bc
commit 0f23c8f30e
4 changed files with 35 additions and 2 deletions

12
Makefile Normal file
View File

@ -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

10
about.md4tj Normal file
View File

@ -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.

View File

@ -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 # The Jerks
## Welcome to the official website of 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!

6
nav.md4tj Normal file
View File

@ -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)