Pt-C-1
Christopher Govender says:
This code should go in /views/application.html.erb after the ‘contact’ link in the side column. ...Then you should go to /stylesheets/application.css.scss and add – color: #bfb to the nested li selector. It will then be visible.
Young says:
The code should not be <%= Time.now.strftime("%I:%M %p) %>,
It should be <%= Time.now.strftime('%I:%M %p‘) %>
Jakub Tuček asks:
Tried two different ways how to set this outside of the view inspired by stack overflow .- First with helper method in app/controller/application_controller.rb
in the view then justclass ApplicationController < ActionController::Base * helper_method :date_loaded * def date_loaded * return Time.now * end ...<%= date_loaded %> - Second setting what should be called before (do not know what) in the controller
and in viewclass ApplicationController < ActionController::Base * before_filter :set_date * def set_date * @date_loaded = Time.now * end ...<%= @date_loaded %>
I consider first the best, prepare helper (maybe in different location, do not know yet) and use it in layout, but if there is some reason to prefer other way (hardcode in layout, or local attribute), could someone please explain why? thanks in advance.

