blog/themes/typing/layout/layout.ejs

24 lines
518 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 %>">
2018-09-10 09:21:59 +00:00
<%- partial('_partial/head') %>
2019-09-03 16:01:48 +00:00
<% if (is_home()) { %>
2018-09-10 09:21:59 +00:00
<% if (theme.dark) { %>
<body class="home-body dark">
<% } else { %>
<body class="home-body">
<% } %>
<% } else {%>
<% if (theme.dark) { %>
<body class="dark">
<% } 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>