blog/themes/chameleon/layout/layout.ejs

17 lines
437 B
Plaintext
Raw Normal View History

2019-08-06 10:46:44 +00:00
<!DOCTYPE html>
2019-08-30 16:18:23 +00:00
<html lang="<%= config.language %>">
<%- partial('_partial/head', {}, { cache: true }) %>
<%/* set /about page to use "home" page layout */%>
<% if (is_current('about/index.html')) { %>
2019-10-17 10:16:06 +00:00
<body class="about-body">
2018-09-10 09:21:59 +00:00
<% } else {%>
<body>
<% } %>
2019-08-30 17:00:31 +00:00
<div id="container" class="container">
<%- body %>
</div>
<%- partial('_partial/footer') %>
<%- partial('_partial/after-footer') %>
2018-09-10 09:21:59 +00:00
</body>
</html>