17 lines
273 B
Cheetah
17 lines
273 B
Cheetah
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{{template "head" .}}
|
|
</head>
|
|
<body>
|
|
<div class="wrapper">
|
|
{{template "sidebar" .}}
|
|
|
|
<div class="main-panel">
|
|
{{template "navbar" .}}
|
|
{{template "content" .}}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|