Skip to content

Instantly share code, notes, and snippets.

@fonkadelic
Created June 9, 2011 08:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fonkadelic/1016297 to your computer and use it in GitHub Desktop.
Save fonkadelic/1016297 to your computer and use it in GitHub Desktop.
Application Template
<!DOCTYPE html>
<html>
<head>
<title>Zwitscher</title>
<%= stylesheet_link_tag :all %>
<%= javascript_include_tag :defaults %>
<%= csrf_meta_tag %>
</head>
<body>
<div id="wrapper">
<h1 id="header">Zwitscher</h1>
<div id="container">
<%= yield %>
</div>
</div>
<div id="footer">
<%= link_to "Impressum", imprint_path %> | <%= link_to "Kontakt", pages_contact_path %>
</div>
<% if flash[:notice] %>
<div id="notice"><%= flash[:notice] %></div>
<script type="text/javascript">
setTimeout("new Effect.Fade('notice', { duration: 0.5 });", 2500)
</script>
<% end %>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment