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

start_controller.rb 169B

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