/** @file index.html Declares a webpage as the index page of the website @author Andrew "Stick" Boothroyd Sticksoft **/ #ifndef INDEX_HTML #define INDEX_HTML #include page.h /** Heading describing the content of this section. **/ char* g_lpszHeading = "Index"; /** String containing a friendly welcome message. **/ char* g_lpszText = "Hello! Welcome to the site. This is the index page." "Click the functions below to navigate."; /** Gets a page describing the author. @return A Page about the author of the site (Stick) **/ Page* ShowAboutMe(); /** Gets a page listing Stick's current projects. @return A Page containing the project listing **/ Page* ShowProjects(); #endif