2014-05-16 23:02:47 +02:00
|
|
|
{{ template "chrome/header.html" . }}
|
|
|
|
<body>
|
|
|
|
{{ template "chrome/navbar.html" . }}
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
2018-09-04 20:22:26 +02:00
|
|
|
<div class="col-md-10">
|
2014-05-16 23:02:47 +02:00
|
|
|
<div class="well well-sm">
|
|
|
|
<h3>{{ .Title }}<br> <small>{{ .Description }}</small></h3>
|
|
|
|
<hr>
|
|
|
|
{{ .Content }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Sidebar -->
|
2018-09-04 20:22:26 +02:00
|
|
|
<div class="col-md-2">
|
2014-05-16 23:02:47 +02:00
|
|
|
{{ template "chrome/menu.html" . }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ template "chrome/footer.copyright.html" . }}
|
|
|
|
</div>
|
2018-09-04 20:22:26 +02:00
|
|
|
{{ template "chrome/footer.html" . }}
|