class Lato::ApplicationController

def respond_to_with_not_found

def respond_to_with_not_found
  hide_sidebar
  respond_to do |format|
    format.html { render 'lato/errors/not_found', status: :not_found }
    format.json { render json: { error: 'Resource not found' }, status: :not_found }
  end
end