socialtree/src/views/index.ejs

9 lines
262 B
Plaintext
Raw Normal View History

2022-10-14 09:26:47 +01:00
<%- include('partials/head') %>
<%- include('partials/header') %>
2023-01-17 08:45:36 +00:00
<% if(customMainPartialThemes.includes(theme)) { %>
2023-01-06 22:21:17 +00:00
<%- include(`partials/${theme}_main`) %>
<% } else { %>
<%- include('partials/defaultMain') %>
<% } %>
<%- include('partials/footer') %>