13 lines
419 B
Text
13 lines
419 B
Text
|
<!DOCTYPE html>
|
||
|
<html lang="<%= config.language %>">
|
||
|
<%- partial('_partial/head.ejs') %>
|
||
|
<body>
|
||
|
<%- partial('_partial/header.ejs') %>
|
||
|
<%- body %>
|
||
|
<%- partial('_partial/footer.ejs') %>
|
||
|
<% if (is_home() || ((is_current('/') || is_current('/index.html')) && page.layout == 'index-page')) { %>
|
||
|
<script type="text/javascript" src="/js/fancyheader.js" async=""></script>
|
||
|
<% } %>
|
||
|
</body>
|
||
|
</html>
|