This is how you vertically center stuff in bootstrap:
This doesnt work in IE8 or less.
location / {
if ($remote_addr ~ "[02468]$") {
rewrite ^(.+)$ /a$1 last;
}
rewrite ^(.+)$ /b$1 last;
}
location /a {
alias /Users/dogself/site;
index index.html index.htm;
ssi on;
}
location /b {
alias /Users/dogself/site;
index index2.html index2.htm;
ssi on;
}