aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/blog/shared
diff options
context:
space:
mode:
authordjones <dgjones@gmail.com>2010-09-06 16:22:13 +1200
committerdjones <dgjones@gmail.com>2010-09-06 16:22:13 +1200
commitbd50bdb415346329e772a90f26828376a6a1cffb (patch)
tree3722ac255f4b96a0e4adf8ec2493dfbd002ade68 /app/views/blog/shared
parent6f342c1314dfbc8a02a2d4276f6ae7b0bc951661 (diff)
downloadrefinerycms-blog-bd50bdb415346329e772a90f26828376a6a1cffb.tar.gz
refinerycms-blog-bd50bdb415346329e772a90f26828376a6a1cffb.tar.bz2
refinerycms-blog-bd50bdb415346329e772a90f26828376a6a1cffb.zip
refactoring the frontend to use more partials, separate out the categories into it's own controller, namespace the blog into it's own folder and create a base blog controller for handling common front end tasks
Diffstat (limited to 'app/views/blog/shared')
-rw-r--r--app/views/blog/shared/_categories.html.erb8
-rw-r--r--app/views/blog/shared/_post.html.erb20
-rw-r--r--app/views/blog/shared/_posts.html.erb8
3 files changed, 36 insertions, 0 deletions
diff --git a/app/views/blog/shared/_categories.html.erb b/app/views/blog/shared/_categories.html.erb
new file mode 100644
index 0000000..fa26ceb
--- /dev/null
+++ b/app/views/blog/shared/_categories.html.erb
@@ -0,0 +1,8 @@
+<h2><%= t('.title') %></h2>
+<ul id='categories'>
+ <% @blog_categories.each do |category| %>
+ <li<%= " class='selected'" if @category.present? and @category.id == category.id %>>
+ <%= link_to "#{category.title} (#{category.posts.count})", blog_category_url(category) %>
+ </li>
+ <% end %>
+</ul> \ No newline at end of file
diff --git a/app/views/blog/shared/_post.html.erb b/app/views/blog/shared/_post.html.erb
new file mode 100644
index 0000000..d8194d3
--- /dev/null
+++ b/app/views/blog/shared/_post.html.erb
@@ -0,0 +1,20 @@
+<li>
+ <h2><%= link_to post.title, blog_post_url(post) %></h2>
+ <p class='posted_at'>
+ <%= t('blog.shared.posts.created_at', :when => post.created_at.strftime('%d %B %Y')) %>
+ </p>
+ <%= truncate(post.body,
+ :length => RefinerySetting.find_or_set(:blog_post_teaser_length, 250),
+ :preserve_html_tags => true) %>
+ <p>
+ <%= link_to t('blog.shared.posts.read_more'), blog_post_url(post) %>
+
+ <span class='comment_count'>
+ <% if post.comments.any? %>
+ (<%= pluralize(post.comments.count, t('blog.shared.comments.singular')) %>)
+ <% else %>
+ (<%= t('blog.shared.comments.none') %>)
+ <% end %>
+ </span>
+ </p>
+</li> \ No newline at end of file
diff --git a/app/views/blog/shared/_posts.html.erb b/app/views/blog/shared/_posts.html.erb
new file mode 100644
index 0000000..4a78334
--- /dev/null
+++ b/app/views/blog/shared/_posts.html.erb
@@ -0,0 +1,8 @@
+<h2><%= t('.other') %></h2>
+<ul id="blog_posts">
+ <% @blog_posts.each do |blog_post| %>
+ <li>
+ <%= link_to blog_post.title, blog_post_url(blog_post) %>
+ </li>
+ <% end %>
+</ul> \ No newline at end of file