You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asciinema.org/app/views/layouts/application.html.erb

38 lines
804 B
Plaintext

<!DOCTYPE html>
<html>
<head>
13 years ago
<title>ascii.io</title>
13 years ago
<%= airbrake_javascript_notifier %>
<%= stylesheet_link_tag "application" %>
<%= javascript_include_tag "application" %>
<%= render :partial => 'layouts/current_user_js' %>
<%= csrf_meta_tags %>
13 years ago
<%= render :partial => 'layouts/ga' %>
</head>
<body>
<header>
<nav>
<h1>
<%= link_to "ascii.io", "/", :class => "home" %>
</h1>
<%= render :partial => 'layouts/session_info' %>
<%= render :partial => 'layouts/navigation' %>
</nav>
</header>
<div id="content">
<% if notice %>
<p id="notice" class="flash"><%= notice %></p>
<% elsif alert %>
<p id="alert" class="flash"><%= alert %></p>
<% end %>
<%= yield %>
13 years ago
</div>
<footer>
</footer>
</body>
</html>