hexo-theme-keep/layout/layout.ejs

10 lines
295 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!-- hexo 启动时,默认从 layout入口找 index 页面 -->
<!DOCTYPE html>
<html lang="<%= config.language %>">
<%- partial('common/head') %>
<body>
<!-- body 表示可以显示其他页面内容(归档页面等等)-->
<%- body %>
<%- partial('common/scripts') %>
</body>
</html>