pvgttm-web/src/layouts/default.ejs

47 lines
971 B
Plaintext
Raw Normal View History

2023-02-20 11:46:46 -05:00
<!-- DEFAULT BEGIN -->
<%- include('partials/top') %>
<body>
<a name="top" id="topAnchor" class="topAnchor"></a>
<div class="page">
<header id="header" class="pageHeader pageSection">
<%- include('partials/siteTitle') %>
<%- include('partials/navmain') %>
</header>
<main id="content" class="pageMain pageSection">
<div class="pageMain-inner">
<%- include('partials/embed_switch') %>
<% if (page.content_type && page.content_type !== 'feature') { -%>
<%- (include('partials/content_types/' + page.content_type) || '').trim() %>
<% } else { -%>
<%- include('partials/pageTitle') %>
<%- content %>
2023-02-27 02:51:18 -05:00
<%- include('partials/backLink') %>
2023-02-20 11:46:46 -05:00
<% } -%>
</div>
</main>
<%- include('partials/menusub') %>
<%- include('partials/footer') %>
</div>
<%- include('partials/bottom') %>
<!-- DEFAULT END -->