├── CNAME ├── images └── 2011-03-14 │ ├── drip.jpg │ ├── full.jpg │ ├── inlay.jpg │ ├── kegs.jpg │ └── top.jpg ├── index.md ├── _layouts └── default.html └── css └── screen.css /CNAME: -------------------------------------------------------------------------------- 1 | octobeer.me -------------------------------------------------------------------------------- /images/2011-03-14/drip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojombo/octobeer/master/images/2011-03-14/drip.jpg -------------------------------------------------------------------------------- /images/2011-03-14/full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojombo/octobeer/master/images/2011-03-14/full.jpg -------------------------------------------------------------------------------- /images/2011-03-14/inlay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojombo/octobeer/master/images/2011-03-14/inlay.jpg -------------------------------------------------------------------------------- /images/2011-03-14/kegs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojombo/octobeer/master/images/2011-03-14/kegs.jpg -------------------------------------------------------------------------------- /images/2011-03-14/top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojombo/octobeer/master/images/2011-03-14/top.jpg -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | title: Octobeer - The GitHub Kegerator Project 4 | --- 5 | 6 | [See how the Kegerator lid was built](http://www.flickr.com/photos/cannikin/sets/72157626468053108/with/5606584264) 7 | 8 | ![full view](/images/2011-03-14/full.jpg) 9 | 10 | ![top view](/images/2011-03-14/top.jpg) 11 | 12 | ![inlay](/images/2011-03-14/inlay.jpg) 13 | 14 | ![drip tray](/images/2011-03-14/drip.jpg) 15 | 16 | ![kegs](/images/2011-03-14/kegs.jpg) 17 | -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {{ page.title }} 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 |
15 | Octobeer: The GitHub Kegerator Project 16 |
17 | 18 | {{ content }} 19 | 20 |
21 | 22 | 23 | Fork me on GitHub 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /css/screen.css: -------------------------------------------------------------------------------- 1 | /*****************************************************************************/ 2 | /* 3 | /* Common 4 | /* 5 | /*****************************************************************************/ 6 | 7 | /* Global Reset */ 8 | 9 | * { 10 | margin: 0; 11 | padding: 0; 12 | } 13 | 14 | html, body { 15 | height: 100%; 16 | } 17 | 18 | body { 19 | background-color: black; 20 | font: 13.34px helvetica, arial, clean, sans-serif; 21 | *font-size: small; 22 | text-align: center; 23 | } 24 | 25 | h1, h2, h3, h4, h5, h6 { 26 | font-size: 100%; 27 | } 28 | 29 | h1 { 30 | margin-bottom: 1em; 31 | } 32 | 33 | p { 34 | margin: 1em 0; 35 | } 36 | 37 | a { 38 | color: #00a; 39 | } 40 | 41 | a:hover { 42 | color: black; 43 | } 44 | 45 | a:visited { 46 | color: #a0a; 47 | } 48 | 49 | table { 50 | font-size: inherit; 51 | font: 100%; 52 | } 53 | 54 | /*****************************************************************************/ 55 | /* 56 | /* Site 57 | /* 58 | /*****************************************************************************/ 59 | 60 | .site { 61 | font-size: 110%; 62 | text-align: justify; 63 | width: 40em; 64 | margin: 3em auto 2em auto; 65 | line-height: 1.5em; 66 | } 67 | 68 | .title { 69 | color: #888; 70 | font-size: 300%; 71 | margin-bottom: 1em; 72 | text-align: center; 73 | line-height: 1.2em; 74 | } 75 | 76 | .site .title a { 77 | color: #888; 78 | text-decoration: none; 79 | } 80 | 81 | .site .title a:hover { 82 | color: black; 83 | } 84 | 85 | .site img { 86 | max-width: 640px; 87 | border: 1px solid #666; 88 | padding: 1px; 89 | } --------------------------------------------------------------------------------