Remove our categorization hack, and add category view pages instead.

This commit is contained in:
2016-04-12 00:08:27 -04:00
parent 6c9765d3d5
commit e3ca9952b8
7 changed files with 79 additions and 11 deletions

25
_sass/_columns.scss Normal file
View File

@ -0,0 +1,25 @@
/* For dynamically determined columnar formatting.
Currently supports equal-width, 1-4 column layouts.
*/
* {
box-sizing: border-box;
}
.column {
float: left;
padding-right: 5px;
}
.col-1 {
width: 100%;
}
.col-2 {
width: 50%;
}
.col-3 {
width: 33%;
}
.col-4 {
width: 25%;
}