+
+ def note
+ @type = "note"
+ @note = Note.find(params[:id])
+ @title = "#{I18n.t('browse.note.title')} | #{@note.id}"
+ @next = Note.visible.where("id > ?", @note.id).order(:id => :asc).first
+ @prev = Note.visible.where("id < ?", @note.id).order(:id => :desc).first
+ rescue ActiveRecord::RecordNotFound
+ render :action => "not_found", :status => :not_found
+ end