17 lines
444 B
CoffeeScript
17 lines
444 B
CoffeeScript
#
|
|
# Crafting Guide - footer_controller.coffee
|
|
#
|
|
# Copyright © 2014-2017 by Redwood Labs
|
|
# All rights reserved.
|
|
#
|
|
|
|
BaseController = require '../base_controller'
|
|
|
|
########################################################################################################################
|
|
|
|
module.exports = class FooterController extends BaseController
|
|
|
|
constructor: (options={})->
|
|
options.templateName = 'footer'
|
|
super options
|