22 lines
450 B
Java
22 lines
450 B
Java
<!DOCTYPE html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml" >
|
|
{% include head.html %}
|
|
<body class="topBarDisabled">
|
|
|
|
<div class="container-fluid">
|
|
{% include header.html %}
|
|
<div class="row-fluid">
|
|
<header id="leftColumn" class="span2">
|
|
<nav class="well sidebar-nav">
|
|
</nav>
|
|
</header>
|
|
<main id="bodyColumn" class="span10" >
|
|
{{ content }}
|
|
</main>
|
|
</div>
|
|
</div>
|
|
<hr/>
|
|
{% include footer.html %}
|
|
</body>
|
|
</html>
|