16 lines
358 B
Plaintext
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>
|