13 lines
353 B
Plaintext
13 lines
353 B
Plaintext
<% if (post.link) { %>
|
|
<h3 class="<%= class_name || 'post-title' %>">
|
|
<a href="<%= url_for(post.link) %>">
|
|
<%= post.title || post.link %>
|
|
</a>
|
|
</h3>
|
|
<% } else if (post.title) { %>
|
|
<h3 class="<%= class_name || 'post-title' %>">
|
|
<a href="<%= url_for(post.permalink) %>">
|
|
<%= post.title %>
|
|
</a>
|
|
</h3>
|
|
<% } %> |