<?php
/* 	ESE Script
	17.08.2006 Alexander Kahl
*/

// Config
include("config.php");
include("logic.php");

if (!isset($_GET["lang"]))
	$lang = conf("default_lang");
else
	$lang = $_GET["lang"];

if (!isset($_GET["seite"]))
	$tmpl = conf("default_template");
else
	$tmpl = $_GET["seite"];
?>



<!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" lang="en" xml:lang="en">
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
		<title>No Panic! - ESE 2008</title>
		<meta name="description" content="Informationen ueber die Erstsemestereinfuehrung 2008, der Fakultaet Informatik an der Technischen Universitaet Dresden" />
		<meta name="keywords" content="Informatik, Medieninformatik, Fachschaftsrat Informatik, FSR Informatik, ESE, Erstsemestereinfuehrung, 2007, TU-Dresden, Technische Universitaet Dresden, " />
		<link rel="stylesheet" type="text/css" media="screen" href="screen.css" />
		<link rel="shortcut icon" type="image/ico" href="favicon.ico" />
	</head>
	<body>
		<a name="top"></a>
		<?php
				render_template("__sprache", $lang);
			?>
		<div id="container">
			<img src="images/header.gif" alt="" style="float:left;"/>
			<?php
				render_template("__menu", $lang);
			?>
			<?php
				render_template($tmpl, $lang);
			?>
		</div>
		<?php
		render_template("__supporter", $lang);
		?>
	</body>
</html>