hexo-theme-amane/layout/layout.ejs

18 lines
580 B
Plaintext
Raw Normal View History

2015-03-19 14:25:53 +00:00
<%- partial('_partial/head') %>
<body>
<div id="container">
2015-03-20 10:33:17 +00:00
<%- partial('_partial/header') %>
2015-03-19 14:25:53 +00:00
<div class="outer">
2015-06-11 11:56:09 +00:00
<% if (theme.profile){ %>
<%- partial('_partial/profile', null, {cache: !config.relative_link}) %>
<% } %>
2015-03-19 14:25:53 +00:00
<section id="main"><%- body %></section>
2015-06-11 11:56:09 +00:00
<% if (theme.sidebar){ %>
2015-03-19 14:25:53 +00:00
<%- partial('_partial/sidebar', null, {cache: !config.relative_link}) %>
<% } %>
</div>
<%- partial('_partial/footer', null, {cache: !config.relative_link}) %>
<%- partial('_partial/after-footer') %>
</div>
</body>
</html>