stadtratmonitor/app/views/layouts/application.html.slim

25 lines
953 B
Text
Raw Normal View History

doctype html
html
2016-02-18 08:48:28 +01:00
head
title Stadtratmonitor Leipzig
= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true
= javascript_include_tag 'vendor/modernizr'
= csrf_meta_tags
= auto_discovery_link_tag(:rss, params.merge(format: :rss))
2016-02-18 08:48:28 +01:00
body
.row
.small-12.columns
.clearfix
2018-03-31 17:22:42 +02:00
h1[id="title" class="left"] = link_to 'Stadtratmonitor Leipzig', search_path
div(class="right")
2018-04-15 15:51:43 +02:00
div(class="left") = link_to_unless_current 'Suche', search_path
2018-03-31 20:50:38 +02:00
div(class="left header_indent") = link_to_unless_current 'Karte', geo_path
2018-04-15 15:51:43 +02:00
div(class="left header_indent") = link_to_unless_current 'Glossar', glossary_url
div(class="right header_indent") = link_to_unless_current 'Impressum', impressum_url
2018-03-31 17:22:42 +02:00
div(class="clear")
div(class="clear")
2016-02-18 08:48:28 +01:00
- flash.each do |name, msg|
= content_tag :div, msg, class: name
= yield