blob: 7ad1887a1f37c9091fd271cc92fe0aaeadc2d639 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<% sorted_articles.each do |post| %>
<div class='art'>
<div style="float: left;">日付: <%= post[:created_at] %></div>
<div style="float: right">タグ: <%= post[:tags].join("・") %></div>
<div style="clear: both"></div>
<h1><%= link_to post[:title], post.path %></h1>
<%= get_summary(post.compiled_content) %>
<div style="float: right;"><%= link_to "つづき", post.path %></div>
</div>
<% end %>
|