hexo-theme-stellar/layout/page.ejs

13 lines
478 B
Plaintext
Raw Normal View History

2021-02-19 23:33:19 +08:00
<% if ((page.h1 && page.h1.length > 0) || (page.content && page.content.length > 0)) { %>
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 <%- page.layout %> reveal'>
<% if (page.h1 && page.h1.length > 0) { %>
<h1 class='article-title'><span><%- page.h1 %></span></h1>
<% } %>
<% if (page.content && page.content.length > 0) { %>
<%- page.content %>
<% } %>
</article>
<% } %>
<%- partial('_partial/plugins/comments/layout') %>