aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/main_controller.rb
blob: 0daa55d739b2431a88116033e129c159e2a739f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class MainController < ApplicationController
  def index
    @title = "aclog"
    render :layout => "index"
  end

  def about
    @title = "about"
  end

  def api
    @title = "api"
  end
end