mirror of https://gitlab.com/curben/blog
17 lines
415 B
Plaintext
17 lines
415 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="<%= config.language %>">
|
|
<%- partial('_partial/head') %>
|
|
<%/* set /about page to use "home" page layout */%>
|
|
<% if (is_current('about/index.html')) { %>
|
|
<body class="home-body">
|
|
<% } else {%>
|
|
<body>
|
|
<% } %>
|
|
<div id="container" class="container">
|
|
<%- body %>
|
|
</div>
|
|
<%- partial('_partial/footer') %>
|
|
<%- partial('_partial/after-footer') %>
|
|
</body>
|
|
</html>
|