Created
April 10, 2015 14:45
-
-
Save egrueter-dev/4aeae5659dd76d1b6d94 to your computer and use it in GitHub Desktop.
Stick footer to bottom of page, this footer also responds to changes in page height.
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
.body-class { | |
min-height: 84%; | |
} |
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
<div class=container> | |
<%- flash.each do |key, value| -%> | |
<div class="alert-box alert radius"> | |
<div class="flash flash-<%= key %>"> | |
<%= value %> | |
</div> | |
</div> | |
<%- end -%> | |
</div> | |
<div class="body-class"> | |
<%= yield %> | |
</div> | |
<%= javascript_include_tag 'application' %> | |
<%= render "layouts/applicationfooter" %> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment