nav-next/themes/webstack/layout/layout.ejs
2024-11-16 12:03:09 +08:00

16 lines
358 B
Plaintext

<!DOCTYPE html>
<html lang="<%= config.language %>">
<% const setting = page ? Object.assign(theme, page) : theme %>
<head>
<%- partial('common/head', {setting:setting}) %>
</head>
<%- body %>
<%- partial('common/footer', {setting:setting}) %>
<% if (setting.custom && setting.custom.body) { %>
<%- setting.custom.body %>
<% } %>
</body>
</html>