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

31 lines
534 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">
<li>Sign in</li>
<li>Sign up</li>
</ul>
</div>
</div>
<div id="main">
<%= yield %>
<div class="clear"></div>
</div>
</div>
</body>
</html>