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

35 lines
757 B
Plaintext

<!DOCTYPE html>
<html>
<head>
13 years ago
<title>ascii.io</title>
<%= stylesheet_link_tag "application" %>
<%= javascript_include_tag "application" %>
<%= csrf_meta_tags %>
</head>
<body>
13 years ago
<div id="all">
<div id="top">
<div id="logo">
<h1>ascii.io</h1>
</div>
<div id="menu">
<ul class="links">
<% if current_user %>
<li><%= link_to "Sign out", logout_path %></li>
<% else %>
<li><%= link_to "Twitter Sign in", twitter_auth_path %></li>
<li><%= link_to "Github Sign in", github_auth_path %></li>
<% end %>
13 years ago
</ul>
</div>
</div>
<div id="main">
<%= yield %>
<div class="clear"></div>
</div>
</div>
</body>
</html>