22 lines
373 B
HTML
22 lines
373 B
HTML
|
{{ partial "header.html" . }}
|
||
|
|
||
|
<body>
|
||
|
|
||
|
{{ partial "navbar.html" . }}
|
||
|
|
||
|
<div class="container-fluid">
|
||
|
<div class="row">
|
||
|
{{ partial "sidebar.html" . }}
|
||
|
<div class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main">
|
||
|
{{ .Content }}
|
||
|
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
{{ partial "footer.html" . }}
|
||
|
|
||
|
</body>
|
||
|
</html>
|