pvgttm-web/src/layouts/default.ejs

47 lines
971 B
Plaintext

<!-- 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 %>
<%- include('partials/backLink') %>
<% } -%>
</div>
</main>
<%- include('partials/menusub') %>
<%- include('partials/footer') %>
</div>
<%- include('partials/bottom') %>
<!-- DEFAULT END -->