Code for my site
Find a file
2025-04-01 00:43:19 +01:00
build/.cache/clangd/index fixes bug with static folder copying where code would crash if files already existed in folder 2023-09-29 12:40:04 +01:00
CMakeFiles adds rss feed support to blog 2024-08-08 11:41:42 +01:00
Resources adds new git link 2025-04-01 00:43:13 +01:00
Src minor bugfix where draft pages were being seen in rss feed 2024-08-08 12:39:22 +01:00
Tests Adds arguments for input and output files 2023-09-28 13:21:49 +01:00
.gitattributes Initial commit 2023-05-28 22:02:52 +01:00
.gitignore Adds new page and alters index page, alters gitignore to ignore output files 2023-10-05 00:47:36 +01:00
cmake_install.cmake adds rss feed support to blog 2024-08-08 11:41:42 +01:00
CMakeLists.txt adds rss feed support to blog 2024-08-08 11:41:42 +01:00
compile_commands.json adds rss feed support to blog 2024-08-08 11:41:42 +01:00
MacroDefinitions.h adds rss feed support to blog 2024-08-08 11:41:42 +01:00
MacroDefinitions.h.in adds rss feed support to blog 2024-08-08 11:41:42 +01:00
Makefile adds rss feed support to blog 2024-08-08 11:41:42 +01:00
Notes.txt rebuild project for use with md4c library 2023-09-15 13:00:49 +01:00
README.md Update README.md 2025-03-17 22:06:28 +00:00
resource.h initial framework 2023-06-09 15:29:05 +01:00
usage.md Update usage.md 2025-03-17 22:05:25 +00:00

Blog

A rebuild of my website with a C++ backend. Currently using md4c for parsing and lighttpd for web backend.

I've mostly been using this as a chance to explore my thoughts on low-level-ish, low power code. Because of this I've been trying to use the simplest fastest libraries I can find and create a very bare-bones implementation that just does the minimum it needs to.

As a finished product this code uses md4c to parse markdown and combines it with a template and on the side generates a navbar of all the existing pages according to their filesystem and puts that in each template too. Pages can take some small settings and properties on their first line in the form of single chars (e.g. P to set to private while a page is still being worked on).

I'm really proud of this, its not clean but I feel like its a project I set myself a spec for and stuck really well to.

Find the site at www.rosia.me and a blog post about its creation here

Also! if you want to use this program, find usage in usage.md! Drop me a message if you do use this program, Id love an excuse to clean it up a bit

TODOs

  • add a "latest change" section to the front page
  • optional per page css overrides
  • top-line parameters with values
    • the ability to add a css class to the menu label of a page
  • rss support
  • the ability to set a html template through an argument