27 lines
439 B
HTML
27 lines
439 B
HTML
{%- include head1.html -%}
|
|
|
|
<title>{{ page.title }}</title>
|
|
|
|
{%- include head2.html -%}
|
|
|
|
<body>
|
|
<div class="container"><!-- start body -->
|
|
|
|
{%- include menu.html -%}
|
|
|
|
<div class="page_content"><!-- start content -->
|
|
|
|
{{ content }}
|
|
|
|
</div><!--content ending-->
|
|
|
|
<div class="footer"><!-- start footer -->
|
|
|
|
{%- include footer.html -%}
|
|
|
|
</div><!-- footer ending-->
|
|
|
|
</div><!-- body ending -->
|
|
</body>
|
|
</html>
|