All pastes #2048608 Raw Edit

CMBasic 'Windfeld' Template

public php v1 · immutable
#2048608 ·published 2011-04-20 11:21 UTC
rendered paste body
<?php// Hier Include-Dateien einbinden!error_reporting(0); // Beim Testen 0 durch 'E_ALL' ersetzen!include "contentmaker.inc.php";echo <<<TEMPLATE_CMBASIC<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head>	<title>{$title}</title>	<meta name="generator" content="Bluefish 1.0.7"/>	<meta name="author" content="Friedrich Weber"/>	<meta name="date" content="2007-11-05T18:56:50+0100"/>	<meta name="copyright" content=""/>	<link href="style.css" rel="stylesheet" type="text/css" /></head><body>	<div id="mother">		<div id="header">			<div id="title">				<h1>Windfeld</h1>			</div>		</div>		<div id="main">			<div id="navigation">				{$menu}				{$felog}			</div>			<div id="content">				{$content}			</div>		</div>		<div id="main-bottom">			&nbsp;		</div>		<div id="copyright">			<em>windfeld</em> design by <a href="http://www.reichbier.de" target="_blank">Friedrich Weber</a>		</div>		<div id="w3-icons">			<a rel="license" href="http://creativecommons.org/licenses/by-sa/2.0/de/">			<img alt="Creative Commons License" style="border-width:0" src="http://creativecommons.org/images/public/somerights20.png" />			</a>			<a href="http://validator.w3.org/check?uri=referer"><img	        src="http://www.w3.org/Icons/valid-xhtml10-blue"	        alt="Valid XHTML 1.0 Transitional" height="31" width="88"/></a>	   </div>	</div></body></html>TEMPLATE_CMBASIC;?>