Stack2RSS 1.0
A simple web application that creates an RSS feed given an API route.
|
00001 <?php 00002 00003 /// \file header.inc Contains the header template. 00004 00005 // Load the configuration values 00006 require_once 'config.inc'; 00007 00008 ?> 00009 <!DOCTYPE> 00010 <html> 00011 <head> 00012 <title>Stack2RSS - Creating RSS Feeds from API Routes!</title> 00013 <link href='http://fonts.googleapis.com/css?family=Play&subset=latin&v2' rel='stylesheet' type='text/css'> 00014 <link href='http://fonts.googleapis.com/css?family=Droid+Sans+Mono&subset=latin&v2' rel='stylesheet' type='text/css'> 00015 <link rel="shortcut icon" href="<?php echo CONFIG_DOCUMENT_ROOT; ?>/resources/favicon.ico" /> 00016 <link href="<?php echo CONFIG_DOCUMENT_ROOT; ?>/resources/style.css" rel='stylesheet' type='text/css' /> 00017 </head> 00018 <body> 00019 <div id='topbar'> 00020 <table> 00021 <tr> 00022 <td> 00023 <img src="<?php echo CONFIG_DOCUMENT_ROOT; ?>/resources/feed_logo.png" /> 00024 </td> 00025 <td> 00026 <h1>Stack2RSS</h1> 00027 </td> 00028 </tr> 00029 </table> 00030 </div> 00031 <div id='under_topbar'></div> 00032 <div id='content'>