class Pettanr.View.Layout.Logo extends Tag.Span id: 'logo' constructor: (options) -> super(options) initialize: (options) -> options.class_name ||= 'logo' title = Manifest.manifest().magic_numbers['profile']['users']['caption'] url = '/' @logo_button = new Pettanr.View.Button(url, _.escape(title), options) render: () -> this.$el.html(@logo_button.render().el) this