aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/blog_posts
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_posts
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_posts')
-rw-r--r--app/views/blog_posts/_categories.html.erb0
-rw-r--r--app/views/blog_posts/_comments.html.erb0
-rw-r--r--app/views/blog_posts/_side_bar.html.erb8
-rw-r--r--app/views/blog_posts/index.html.erb27
-rw-r--r--app/views/blog_posts/show.html.erb89
5 files changed, 0 insertions, 124 deletions
diff --git a/app/views/blog_posts/_categories.html.erb b/app/views/blog_posts/_categories.html.erb
deleted file mode 100644
index e69de29..0000000
--- a/app/views/blog_posts/_categories.html.erb
+++ /dev/null
diff --git a/app/views/blog_posts/_comments.html.erb b/app/views/blog_posts/_comments.html.erb
deleted file mode 100644
index e69de29..0000000
--- a/app/views/blog_posts/_comments.html.erb
+++ /dev/null
diff --git a/app/views/blog_posts/_side_bar.html.erb b/app/views/blog_posts/_side_bar.html.erb
deleted file mode 100644
index dfdfaa2..0000000
--- a/app/views/blog_posts/_side_bar.html.erb
+++ /dev/null
@@ -1,8 +0,0 @@
-<h2><%= t('.categories') %></h2>
-<ul id='categories'>
- <% @blog_categories.each do |category| %>
- <li>
- <%= link_to category.title, blog_category_url(category) %>
- </li>
- <% end %>
-</ul> \ No newline at end of file
diff --git a/app/views/blog_posts/index.html.erb b/app/views/blog_posts/index.html.erb
deleted file mode 100644
index c97ca61..0000000
--- a/app/views/blog_posts/index.html.erb
+++ /dev/null
@@ -1,27 +0,0 @@
-<% content_for :body_content_left do %>
- <%= @page[Page.default_parts.first.to_sym] %>
-
- <ul id="blog_posts">
- <% @blog_posts.each do |blog_post| %>
- <li>
- <h2><%= link_to blog_post.title, blog_post_url(blog_post) %></h2>
- <%= t('.created_at', :when => blog_post.created_at.strftime('%d %B %Y')) %>
- <%= truncate(blog_post.body,
- :length => RefinerySetting.find_or_set(:blog_post_teaser_length, 250),
- :preserve_html_tags => true) %>
- <%= link_to t('.read_more'), blog_post_url(blog_post) %>
- </li>
- <% end %>
- </ul>
-<% end %>
-
-<% content_for :body_content_right do %>
- <%= @page[Page.default_parts.second.to_sym] %>
-
- <%= render :partial => "side_bar" %>
-<% end %>
-
-<%= render :partial => "/shared/content_page" %>
-<% content_for :head do %>
- <%= stylesheet_link_tag 'refinerycms-blog' %>
-<% end %> \ No newline at end of file
diff --git a/app/views/blog_posts/show.html.erb b/app/views/blog_posts/show.html.erb
deleted file mode 100644
index e13a442..0000000
--- a/app/views/blog_posts/show.html.erb
+++ /dev/null
@@ -1,89 +0,0 @@
-<% content_for :body_content_title, @blog_post.title %>
-
-<% content_for :body_content_left do %>
- <%= t('.created_at', :when => @blog_post.created_at.strftime('%d %B %Y')) %>
- <%= @blog_post.body %>
-
- <% if (categories = @blog_post.categories).any? %>
- <hr />
- <div class='post_categories'>
- <span class='filed_in'><%= t('.filed_in') %></span>
- <ul>
- <% categories.each_with_index do |category, index| %>
- <li>
- <%= link_to category.title, blog_category_url(category) -%><%= ',' if index < ((categories.length) - 1) %>
- </li>
- <% end %>
- </ul>
- </div>
- <% end %>
-
- <% if (comments = @blog_post.comments.approved).any? %>
- <hr />
- <h2><%= t('.comments.title') %></h2>
- <% comments.each do |comment| %>
- <div class='blog_comment_message' id='<%= "comment-#{comment.to_param}" %>'>
- <p>
- <%= comment.message.to_s.gsub("\r\n\r\n", "</p><p>").gsub("\r\n", "<br/>") %>
- </p>
- </div>
- <p class='blog_comment_author'>
- <%= t('.comments.by', :who => comment.name) %>
- <%= t('.comments.time_ago', :time => time_ago_in_words(comment.created_at)) %>
- </p>
- <% end %>
- <% end %>
-
- <% if BlogPost.comments_allowed? %>
- <hr />
- <% flash.each do |key, value| %>
- <div id='flash' class="flash flash_<%= key %>">
- <%= value %>
- </div>
- <% end %>
- <% form_for [:blog_post, @blog_comment] do |f| %>
- <% if Rails.version < '3.0.0'%>
- <%= f.error_messages %>
- <% else %>
- <%= render :partial => "/shared/admin/error_messages",
- :locals => {
- :object => f.object,
- :include_object_name => true
- } %>
- <% end %>
- <div class='field'>
- <%= f.label :name %>
- <%= f.text_field :name %>
- </div>
- <div class='field'>
- <%= f.label :email %>
- <%= f.text_field :email %>
- </div>
- <div class='field message_field'>
- <%= f.label :message %>
- <%= f.text_area :message, :rows => 6 %>
- </div>
- <div class='field form-actions'>
- <%= f.submit t('.submit') %>
- </div>
- <% end %>
- <% end %>
-<% end %>
-
-<% content_for :body_content_right do %>
- <%= render :partial => "side_bar" %>
-
- <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>
-<% end %>
-
-<%= render :partial => "/shared/content_page" %>
-<% content_for :head do %>
- <%= stylesheet_link_tag 'refinerycms-blog' %>
-<% end %> \ No newline at end of file