-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.php
63 lines (57 loc) · 1.97 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
defined('_JEXEC') or die;
// Include Joomla Bootstrap CSS & JS
JHtml::_('bootstrap.framework');
JHtmlBootstrap::loadCss();
// Include additional CSS
JFactory::getDocument()->addStyleSheet('media/jui/css/icomoon.css');
JFactory::getDocument()->addStyleSheet('templates/'.$this->template.'/css/template.css');
?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<jdoc:include type="head" />
</head>
<body data-spy="scroll" data-target=".navbar">
<!-- Begin Navigation -->
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a data-target=".navbar-responsive-collapse" data-toggle="collapse" class="btn btn-navbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="<?php echo $this->baseurl; ?>"><?php echo(JFactory::getApplication()->getCfg('sitename'));?></a>
<div class="nav-collapse collapse navbar-responsive-collapse">
<jdoc:include type="modules" name="menu" style="none" />
</div>
</div>
</div>
</div>
<!-- End Navigation -->
<!-- Begin Content -->
<div class="container">
<div id="header" class="row-fluid">
<jdoc:include type="modules" name="header" style="bootstrap" />
</div>
<div id="specialisaties" class="row-fluid">
<jdoc:include type="modules" name="abovecontent" style="bootstrap" />
</div>
<div id="portfolio">
<hr>
<jdoc:include type="message" />
<jdoc:include type="component" />
</div>
<div id="contact" class="row-fluid">
<jdoc:include type="modules" name="bottom" style="bootstrap" />
</div>
<div class="row-fluid">
<p align="center">© <?php echo(JFactory::getApplication()->getCfg('sitename'));?> <?php echo date('Y') ?></p>
</div>
</div>
<!-- End Content -->
</body>
<jdoc:include type="modules" name="debug" style="none" />
</html>