Skip to content

Commit 3ed5f13

Browse files
committed
fix rime#630: extra closing html tag after header
1 parent 7d91ec7 commit 3ed5f13

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

‎blog/package.json‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "1.0.0",
44
"private": true,
55
"hexo": {
6-
"version": "3.8.0"
6+
"version": "3.9.0"
77
},
88
"dependencies": {
99
"hexo": "^3.8.0",
@@ -17,4 +17,4 @@
1717
"hexo-renderer-stylus": "^0.3.3",
1818
"hexo-server": "^0.1.3"
1919
}
20-
}
20+
}

‎blog/themes/freewill/layout/_partial/head.ejs‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<!DOCTYPE HTML><!-- _partial/head -->
2-
<html>
1+
<!-- _partial/head -->
32
<head>
43
<meta charset="utf-8">
54
<%

‎blog/themes/freewill/layout/layout.ejs‎

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
<!DOCTYPE HTML>
2+
<html>
13
<%- partial('_partial/head') %>
2-
<body>
4+
<body>
35
<%- partial('_partial/navigation') %>
46
<% if (is_home()) { %>
57
<%- partial('_partial/front_matter') %>
@@ -16,4 +18,5 @@
1618
<%- partial('_partial/footer') %> </footer>
1719
</div> <!-- container-narrow -->
1820
<%- partial('_partial/after_footer') %>
19-
</body></html>
21+
</body>
22+
</html>

0 commit comments

Comments
 (0)