Created
January 21, 2012 21:51
-
-
Save itsbth/1654179 to your computer and use it in GitHub Desktop.
Uploaded by UploadToGist for Sublime Text 2
This file contains hidden or 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 | |
| head | |
| title Dupeshare | |
| = stylesheet_link_tag "application" | |
| = javascript_include_tag "application" | |
| = csrf_meta_tags | |
| body | |
| = render partial: 'shared/nav' | |
| .container | |
| - %w(error warning notice success).map(&:to_sym).each do |sym| | |
| - if flash[sym] | |
| .alert-message{class: sym.to_s, data: alert: true} | |
| a.close href: '#' | |
| p= flash[sym] | |
| = yield | |
| footer | |
| p © <a href="http://itsbth.com">Bjørn Tore Håvie</a> 2011 ☕ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment