hexo-theme-keep/layout/about.ejs

13 lines
340 B
Plaintext
Raw Normal View History

<% if(page.title == 'about') { %>
<div class="about-container">
2020-03-26 22:31:12 +08:00
<div class="about-content markdown">
<%- page.content %>
</div>
<div class="about-comments">
2020-03-26 22:31:12 +08:00
<% if (page.comments) { %>
<%- partial('_partial/valine') %>
2020-03-26 22:31:12 +08:00
<% } %>
</div>
</div>
<% } %>