I slowly pieced together a semi-working blog by adding the blogging gem to the gemfile and activating it in config.rb:
blog.prefix = 'listening'
blog.layout = 'layouts/blog'
blog.default_extension = '.md'
i also copied the calendar.html.erb, feed.xml.builder, index.html.erb, and tag.html.erb files into the /listening, along with a sample .md file.
I am able to successfully render the post on the /listening blog index but once I click on the archive link it gives an error: undefined method `link’ for nil:NilClass
What am I doing wrong? Thanks in advance