hexo-theme-stellar/layout/post.ejs

20 lines
590 B
Plaintext
Raw Normal View History

2021-02-19 23:33:19 +08:00
<%
if (page.class == undefined) {
page.class = 'post';
}
2021-02-20 13:09:41 +08:00
if (page.header == undefined) {
page.header = false;
console.log('header = false');
}
2021-02-19 23:33:19 +08:00
%>
<% let post = page; %>
2021-02-20 13:09:41 +08:00
<%- partial('_partial/main/navbar/breadcrumb') %>
2021-02-19 23:33:19 +08:00
<article class='content md <%- post.layout %> reveal'>
<h1 class='article-title'><span><%- post.h1 || post.title %></span></h1>
<%- post.content %>
</article>
2021-02-20 13:09:41 +08:00
<%- partial('_partial/main/article/references') %>
<%- partial('_partial/main/article/read_next') %>
<%- partial('_partial/main/article/related_posts') %>
2021-02-19 23:33:19 +08:00
<%- partial('_partial/plugins/comments/layout') %>