class BlogController < ApplicationController

  def index
    @posts = Post.find_recent
    render :action => 'index'
  end
end