This repository has been archived on 2022-11-21. You can view files and clone it, but cannot push or open issues or pull requests.
kspace-static/src/textes/themes/blog/layout/layout.ejs

18 lines
614 B
Plaintext

<%- partial('_partial/head') %>
<body>
<div id="container">
<div id="wrapper">
<%- partial('_partial/header', null, {cache: !config.relative_link}) %>
<div class="container-blog" id="page-content">
<section class="mainpane" id="main"><%- body %></section>
<% if (theme.sidebar && theme.sidebar !== 'bottom'){ %>
<%- partial('_partial/sidebar', null, {cache: !config.relative_link}) %>
<% } %>
</div>
</div>
<%- partial('_partial/footer', null, {cache: !config.relative_link}) %>
<%- partial('_partial/after-footer') %>
</div>
</body>
</html>