mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2024-12-23 16:13:14 +01:00
20 lines
438 B
Text
20 lines
438 B
Text
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
|
||
|
<title><%= content_for?(:title) ? yield(:title) : "Untitled" %></title>
|
||
|
|
||
|
<%= stylesheet_link_tag "application" %>
|
||
|
<%= javascript_include_tag "application", 'data-turbolinks-track' => true %>
|
||
|
<%= csrf_meta_tags %>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<%= yield %>
|
||
|
|
||
|
</body>
|
||
|
</html>
|