This repository has been archived on 2024-09-12. You can view files and clone it, but cannot push or open issues or pull requests.
svrjs-website/themes/svrjswebsite/layout/layout.ejs

14 lines
496 B
Text
Raw Normal View History

2024-03-15 21:53:12 +01:00
<!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>
<script type="text/javascript" src="/js/indextabs.js" async=""></script>
2024-03-15 21:53:12 +01:00
<% } %>
</body>
</html>