diff --git a/app/views/front/show_breadcrumb.html.erb b/app/views/front/show_breadcrumb.html.erb
index 7b0fc9128..734c68127 100644
--- a/app/views/front/show_breadcrumb.html.erb
+++ b/app/views/front/show_breadcrumb.html.erb
@@ -1,11 +1,15 @@
<% if not @ancestors.empty? %>
-
-
- <% @ancestors.each do |node| %>
- -
- <%= link_to node.title, "/#{node.path}" %>
-
+
+ <% @ancestors.each_with_index do |node, i| %>
+ <% last = i == @ancestors.size-1 %>
+ - '>
+ <% if last %>
+ <%= node.title %>
+ <% else %>
+ <%= link_to node.title, "/#{node.path}" %>
+ /
<% end %>
-
-
-<% end %>
+
+ <% end %>
+
+<% end %>
\ No newline at end of file