Created
June 9, 2011 08:06
-
-
Save fonkadelic/1016297 to your computer and use it in GitHub Desktop.
Application Template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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