blob: 11a6079c27920b84fe0ebec50a0f2a5929967750 [file] [log] [blame]
#
# common banner
#
class Wunderbar::HtmlMarkup
def _banner(args)
# logo
_a href: 'http://whimsy.apache.org/' do
_img alt: 'ASF Logo', title: 'ASF Logo',
src: 'https://www.apache.org/foundation/press/kit/asf_logo_small.png'
end
# breadcrumbs
if args[:breadcrumbs]
_div.breadcrumbs do
_a href: 'http://www.apache.org' do
_span.glyphicon.glyphicon_home
end
_a 'whimsy', href: '/'
args[:breadcrumbs].each do |name, link|
_span "\u00BB"
_a name.to_s, href: link
end
end
end
end
end