mirror of
https://github.com/SouthFox-D/SouthFox-D.github.io.git
synced 2024-11-25 16:36:51 +01:00
40 lines
843 B
Text
40 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 -->
|