A website template with lots of features, built with ruby on rails.

start_controller.rb 132B

12345678
  1. class StartController < ApplicationController
  2. def index
  3. @blog_posts = BlogPost.order('created_at DESC').take(4)
  4. end
  5. end