-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathside.erb
More file actions
51 lines (43 loc) · 1.02 KB
/
side.erb
File metadata and controls
51 lines (43 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<% if about = Snippet("about") %>
<section class="profile">
<h3><%= t.profile %></h3>
<div class="profile_detail">
<%= about.body %>
</div>
</section>
<% end %>
<section class="recentposts">
<h3><%= t.recent_entries %></h3>
<ul>
<% Post.recent.each do |post| %>
<li><%= link_to post.title, post.link %></li>
<% end %>
</ul>
</section>
<section class="comments">
<h3><%= t.recent_comments %></h3>
<ul>
<% Comment.recent.each do |comment| %>
<li><%= link_to truncate(strip_tags(comment.body), :length => 16), comment.link %></li>
<% end %>
</ul>
</section>
<section class="tags">
<h3><%= t.tags %></h3>
<ul>
<% Tag.all.each do |tag| %>
<li><%= link_to tag.name, tag.link %></li>
<% end %>
</ul>
</section>
<section class="archives">
<h3><%= t.archives %></h3>
<ul>
<% months.each do |m| %>
<li><%= link_to "#{m.year}年#{m.month}月", "/#{m.year}/#{m.month}/" %></li>
<% end %>
</ul>
</section>
<section class="admin_menu">
<%= partial "admin_menu" %>
</section>