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

18 lines
762 B
Text

<div class="entry">
<div class="row">
<% if (item.feature ) { %>
<% if (config.post_asset_folder){ %>
<div class="thumbnail"><a href="<%- url_for('./') %><%= item.path %>"><img src="<%= item.path %><%= item.feature %>" alt="<%= item.title %>" class="nofancybox"></a>
<% } else { %>
<div class="thumbnail"><a href="<%- url_for('./') %><%= item.path %>"><img src="<%= item.feature %>" alt="<%= item.title %>" class="nofancybox"></a>
<% } %>
</div>
<% } %>
<% if (item.excerpt && index) { %>
<%- item.excerpt %>
<% } else { %>
<%- item.content %>
<% } %>
</div>
<a type="button" href="<%- url_for('./') %><%- item.path %>#more" class="btn btn-default more"><%= __('read_more') %></a>
</div>