mirror of
https://gitee.com/bookshelfplus/bookshelfplus
synced 2025-09-02 23:23:28 +08:00
19 lines
516 B
HTML
19 lines
516 B
HTML
<!DOCTYPE html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<%- include("./component/header.html"); %>
|
|
</head>
|
|
<body>
|
|
<%- include("./component/navbar.html"); %>
|
|
<main class="main">
|
|
<h1><%= title %></h1>
|
|
<div id="container">
|
|
<% if ( pageTemplate != "" ) { %>
|
|
<!-- 引入对应页面渲染配置 -->
|
|
<%- include(pageTemplate); %>
|
|
<% } %>
|
|
</div>
|
|
</main>
|
|
<%- include("./component/footer.html"); %>
|
|
</body>
|
|
</html> |