You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
728 B
Plaintext
28 lines
728 B
Plaintext
<!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> </h3>
|
|
<% post.tags.forEach((tag) => { %>
|
|
<a href="<%= tag.link %>">#<%= tag.name %></a>
|
|
<% }); %>
|
|
<div style="text-align: right;">
|
|
↶ <a href="/">返回首页</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<%- include('./_blocks/scripts') %>
|
|
</body>
|
|
</html>
|