This commit is contained in:
dmxiaoshen
2023-04-20 14:23:12 +08:00
commit 103a72c20d
31 changed files with 1310 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<head>
<%- include('./_blocks/head', { isHome: false,siteTitle: themeConfig.siteName }) %>
</head>
<body>
<script type="text/javascript">
if (/mobile/i.test(navigator.userAgent) || /android/i.test(navigator.userAgent)) {
document.body.classList.add('mobile')
}
</script>
<div>
<div class="inner">
<h2><%= post.title %></h2>
<%- post.content %>
<h3>&nbsp;</h3>
<% post.tags.forEach((tag) => { %>
<a href="<%= tag.link %>">#<%= tag.name %></a>&nbsp;
<% }); %>
<div style="text-align: right;">
↶ <a href="/">返回首页</a>
</div>
</div>
</div>
<%- include('./_blocks/scripts') %>
</body>
</html>