Blog/themes/freemind/layout/_partial/article.ejs
2022-03-16 22:24:24 +08:00

39 lines
843 B
Text

<%- partial('post/title', {item: item, index: false}) %>
<div class="row <% if (post) { %>post<% } else { %>page<% } %>">
<!-- cols -->
<% if (post) { %>
<div id="top_meta"></div>
<div class="col-md-9">
<% } else { %>
<div class="col-md-12">
<% } %>
<!-- content -->
<div class="mypage">
<% if (item.description) { %>
<div class="alert alert-success description">
<i class="fa fa-info-circle"></i> <%- item.description %>
</div> <!-- alert -->
<% } %>
<%- item.content %>
</div>
<div>
<center>
<%- partial('post/pagination', {page: item}) %>
</center>
</div>
<!-- comment -->
<%- partial('post/comment_footer', {page: item}) %>
</div> <!-- col-md-9/col-md-12 -->
<% if (post) { %>
<div id="side_meta">
<%- partial('post/meta', {item: item}) %>
</div>
<% } %>
</div><!-- row -->