Just a smidge of Javascript to simple HTML/CSS and voila, responsive, dynamic height, sticky footers.
Browser support: IE8+
A Pen by Cory Simmons on CodePen.
| # Recursively add a .gitignore file to all directories | |
| # in the working directory which are empty and don't | |
| # start with a dot. Helpful for tracking empty dirs | |
| # in a git repository. | |
| find . -type d -regex ``./[^.].*'' -empty -exec touch {}"/.gitignore" \; |
| #!/bin/bash | |
| # replication delay threshold | |
| TH_SECONDS_BEHIND=60 | |
| set -euo pipefail | |
| IFS=$'\n\t' | |
| SERVER=$(hostname -f) | |
| ERRORS=() |