23 lines
509 B
Handlebars
23 lines
509 B
Handlebars
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{{> head }}
|
|
</head>
|
|
<body id="inicio">
|
|
{{#if map}}
|
|
{{> (lookup . 'map')}}
|
|
{{/if}}
|
|
<div class="site-content">
|
|
{{#if headerPartial}}
|
|
{{> (lookup . 'headerPartial')}}
|
|
{{else}}
|
|
{{> headers/default_header}}
|
|
{{/if}}
|
|
<center>
|
|
{{> argentum/sidebar}}
|
|
</center>
|
|
{{{body}}}
|
|
{{!-- </div> --}}
|
|
</body>
|
|
</html>
|