73 lines
2.1 KiB
PHP
73 lines
2.1 KiB
PHP
<?php
|
|
// No direct access.
|
|
defined('_JEXEC') or die;
|
|
|
|
JHTML::_('behavior.framework', true);
|
|
$app = JFactory::getApplication();
|
|
?>
|
|
|
|
<?php echo '<!DOCTYPE html>'; ?>
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>" >
|
|
|
|
<head>
|
|
|
|
<jdoc:include type="head" />
|
|
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/system/css/system.css" type="text/css" />
|
|
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/main.css" type="text/css" />
|
|
|
|
|
|
<!-- <title>Saarländische Tanzverband e.V.</title> -->
|
|
<!-- <meta content=""> -->
|
|
|
|
<!-- <meta name="viewport" content="width=device-width, initial-scale=1.0"> -->
|
|
|
|
<!-- <style></style> -->
|
|
<!-- <link rel="stylesheet" type="text/css" href="css/main.css"> -->
|
|
</head>
|
|
<body>
|
|
|
|
<div id='topmenu'>
|
|
<jdoc:include type="modules" style="none" name="topmenu" />
|
|
</div> <!-- #topmenu -->
|
|
|
|
<div id='page'>
|
|
|
|
<div id='header'>
|
|
<div id='logo'>
|
|
<img src='<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/img/SLT_hoch_03.png'>
|
|
</div> <!-- #logo -->
|
|
<div id='slideshow'>
|
|
<jdoc:include type="modules" style="none" name="slideshow" />
|
|
</div> <!-- #slideshow -->
|
|
</div> <!-- #header -->
|
|
|
|
<div id='mobile_menu'>
|
|
<jdoc:include type="modules" style="none" name="mobile_menu" />
|
|
</div>
|
|
|
|
<div id='content'>
|
|
<div id='left_menu'>
|
|
<jdoc:include type="modules" style="none" name="left_menu" />
|
|
</div> <!-- #left_menu -->
|
|
<div id='main_column'>
|
|
<div id='main_content'>
|
|
<jdoc:include type="component" style="none" />
|
|
</div>
|
|
<div id='footline'>
|
|
<jdoc:include type="modules" style="none" name="footline" />
|
|
</div> <!-- #footline -->
|
|
</div><!-- main_column -->
|
|
<div id='right_column'>
|
|
<jdoc:include type="modules" style="none" name="right_column" />
|
|
</div><!-- #right_column -->
|
|
</div> <!-- #content -->
|
|
|
|
<div id='footer'>
|
|
<jdoc:include type="modules" style="none" name="footer" />
|
|
</div> <!-- #footer -->
|
|
|
|
</div> <!-- #page -->
|
|
|
|
</body>
|
|
</html>
|