#include "content.h"
Content myContent ;
void main ()
{
if ( myContent .exists () )
{
// Display the website content
myContent .render () ;
}
else
{
// Apologise for having no content and display picture
const char * apologyAnimal = "cat" ;
printf ( "Content has not been created yet. \
To apologise here is a picture of my %s \n" , apologyAnimal ) ;
myContent .display_apology ( apologyAnimal ) ;
}
}