21 lines
249 B
Ruby
21 lines
249 B
Ruby
class Public::PortfoliosController < ApplicationController
|
|
layout "public"
|
|
|
|
|
|
|
|
def index
|
|
|
|
@portfolios = Portfolio.all
|
|
end
|
|
|
|
|
|
def show
|
|
@portfolio = Portfolio.find_by_slug(params[:id])
|
|
@title = @portfolio.title
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|