clarion/app/views/layouts/application.html.erb

39 lines
1.0 KiB
Plaintext
Raw Normal View History

2014-07-28 12:34:18 +03:00
<!DOCTYPE html>
<html>
<head>
2014-09-01 12:57:27 +03:00
<title>
<%= Conference.current.title %>
<%= yield :title if content_for? :title %>
</title>
<%= stylesheet_link_tag 'application' %>
<%= stylesheet_link_tag 'http://openfest.org/wp-content/themes/thematic-openfest/style.css' %>
<%= csrf_meta_tags %>
</head>
<body>
<div id="wrapper" class="hfeed">
<header id="header">
<div id="branding">
<div id="blog-title">
<span>
<a href="http://openfest.org/" title="OpenFest" rel="home">
<img src="//openfest.org/images/logo-header.png" alt="OpenFest" />
</a>
</span>
</div>
2014-08-31 22:34:24 +03:00
<h1 id="blog-description"><%= t(:of_motto)%></h1>
</div><!-- #branding -->
2014-07-28 12:34:18 +03:00
<div id="access">
<%= render partial: '/layouts/nav' %>
</div><!-- #access -->
</header>
2014-07-28 12:34:18 +03:00
<div id="main">
2014-08-31 13:08:14 +03:00
<%= render('/shared/flash_messages') unless flash.empty? %>
<%= yield %>
</div>
</div>
<%= javascript_include_tag 'application' %>
</body>
2014-07-28 12:34:18 +03:00
</html>