I managed to scrap up the free time to switch the CMS of faase.org from Pico CMS to jekyll with the HPSTR theme.
This will not only give the page a little more modern look and make it better readable on smartphones and tablets, it will also provide a beautiful syntax-highlighting for the provided source code.
Example
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char* argv[])
{
if (argc < 2)
{
return EXIT_FAILURE;
}
printf("You wrote:");
for (size_t i = 0; i < argc - 1; i++)
{
printf("%s and ", argv[i]);
}
printf("%s.\n", argv[argc-1]);
return EXIT_SUCCESS;
}
Enjoy!