# frozen_string_literal: true class BlogsController < ApplicationController include C::BlogsHelper def index @blogs = archive_blogs end def show @blog = C::Blog.get_from_url(params[:id]) end end