85 lines
3.3 KiB
PHTML
85 lines
3.3 KiB
PHTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title><?php echo $this->data['title']; ?></title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="<?php echo HTML_CSS; ?>bootstrap.min.css">
|
|
<link rel="stylesheet" href="<?php echo HTML_CSS; ?>bootstrap.min.css">
|
|
<link rel="stylesheet" href="<?php echo HTML_CSS; ?>bootstrap-theme.min.css">
|
|
<link rel="stylesheet" href="<?php echo HTML_CSS; ?>ahd.min.css">
|
|
<script type="text/javascript" src="<?php echo HTML_JS; ?>jquery-3.1.1.min.js"></script>
|
|
<script type="text/javascript" src="<?php echo HTML_JS; ?>jquery-ui-1.12.1.min.js"></script>
|
|
<script type="text/javascript" src="<?php echo HTML_JS; ?>bootstrap.min.js"></script>
|
|
<?php
|
|
|
|
if ($this->isEditable)
|
|
{
|
|
$registry = \Helper\Registry::getInstance();
|
|
$registry->editorConfig['navID'] = $this->data['navID'];
|
|
?>
|
|
<link rel="stylesheet" href="<?php echo $registry->editorConfig['editorUrl'] . $registry->editorConfig['editorVersion']; ?>/css/editor.min.css">
|
|
<script type="text/javascript">var csEditorParams = <?php echo json_encode($registry->editorConfig, JSON_UNESCAPED_UNICODE); ?>;</script>
|
|
<script type="text/javascript" src="<?php echo $registry->editorConfig['editorUrl'] . $registry->editorConfig['editorVersion']; ?>/editor.js.php?lang=<?php echo $_SESSION['lang']; ?>"></script>
|
|
<?php
|
|
}
|
|
|
|
?>
|
|
</head>
|
|
<body>
|
|
<header class="navbar navbar-fixed-top navbar-inverse">
|
|
<div class="container">
|
|
<div class="navbar-header pull-left">
|
|
<button aria-controls="main-navbar" aria-expanded="false" class="navbar-toggle collapsed" data-target="#main-navbar" data-toggle="collapse" type="button">
|
|
<span class="sr-only">Toggle navigation</span>
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
</button>
|
|
</div>
|
|
<?php echo $this->data['navigation']; ?>
|
|
<div class="navbar-header pull-right">
|
|
<div class="pull-right">
|
|
<div class="subaru_logo pull-left"></div>
|
|
<div class="daihatsu_logo pull-right"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
<div class="container" id="content">
|
|
<?php
|
|
echo $this->data['keyVisual'];
|
|
$editorData = '';
|
|
if ($this->isEditable === true)
|
|
{
|
|
$editorData = ' data-editor="Headline" data-id="' . $this->data['navID'] . '" data-element="Headline_' . $this->data['navID'] . '"';
|
|
}
|
|
?>
|
|
<div class="row"<?php echo $editorData; ?>><h1 class="col-md-12"><?php echo $this->data['headline']; ?></h1></div>
|
|
<div class="sortable">
|
|
<?php echo $this->data['content']; ?>
|
|
</div>
|
|
</div>
|
|
<nav class="navbar navbar-inverse navbar-fixed-bottom">
|
|
<div class="container" id="footer">
|
|
<div class="row">
|
|
<div class="navbar-brand">
|
|
Kontakt <span class="caret"></span><br/> <br/>
|
|
<p>
|
|
AHD Allradhaus GmbH<br/>Hauptstraße 45<br/>87466 Oy-Mittelberg<br/>Telefon 08366 / 232<br/>Telefax 08366 / 286
|
|
</p>
|
|
</div>
|
|
<div class="navbar-brand">
|
|
Öffnungszeiten <span class="caret"></span><br/> <br/>
|
|
<p>
|
|
Montag - Freitag:<br/>8-12 Uhr und 13-17 Uhr<br/> <br/>Samstag:<br/>9-12 Uhr
|
|
</p>
|
|
</div>
|
|
<div class="navbar-brand ahd pull-right">
|
|
<img src="<?php echo HTML_IMG; ?>allradhaus/ahd_allradhaus_logo.png"><br/>
|
|
<img class="center-block" src="<?php echo HTML_IMG; ?>allradhaus/ahd_allradhaus_raeder_gross.png"/>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
</body>
|
|
</html>
|