├── .github └── FUNDING.yml ├── .htaccess ├── LICENSE ├── Parsedown.php ├── README.md ├── article ├── 01.txt ├── 02-tech.txt └── 03-coolarticle.txt ├── index.php ├── page ├── 01-home.txt ├── 02-about.txt ├── 03-contact.txt ├── 04-blog.txt └── HIDDEN-404.txt └── style.css /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [josephernest] 2 | custom: https://afewthingz.com 3 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephernest/void/HEAD/.htaccess -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephernest/void/HEAD/LICENSE -------------------------------------------------------------------------------- /Parsedown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephernest/void/HEAD/Parsedown.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephernest/void/HEAD/README.md -------------------------------------------------------------------------------- /article/01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephernest/void/HEAD/article/01.txt -------------------------------------------------------------------------------- /article/02-tech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephernest/void/HEAD/article/02-tech.txt -------------------------------------------------------------------------------- /article/03-coolarticle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephernest/void/HEAD/article/03-coolarticle.txt -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephernest/void/HEAD/index.php -------------------------------------------------------------------------------- /page/01-home.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephernest/void/HEAD/page/01-home.txt -------------------------------------------------------------------------------- /page/02-about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephernest/void/HEAD/page/02-about.txt -------------------------------------------------------------------------------- /page/03-contact.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephernest/void/HEAD/page/03-contact.txt -------------------------------------------------------------------------------- /page/04-blog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephernest/void/HEAD/page/04-blog.txt -------------------------------------------------------------------------------- /page/HIDDEN-404.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephernest/void/HEAD/page/HIDDEN-404.txt -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephernest/void/HEAD/style.css --------------------------------------------------------------------------------