├── .gitignore ├── 404.php ├── archive.php ├── comments.php ├── css └── global.css ├── footer.php ├── functions.php ├── header.php ├── index.php ├── page.php ├── readme.txt ├── screenshot.png ├── search.php ├── sidebar.php ├── single.php └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | **/.sass-cache 2 | **/.DS_Store 3 | **/node_modules 4 | **/*.swp 5 | -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
5 | Did you type the URL?
6 | You may have typed the address (URL) incorrectly. Check it to make sure you've got the exact right spelling, capitalization, etc.
7 |
9 | Did you follow a link from somewhere else at this site?
10 | If you reached this page from another part of this site.
11 |
13 | Did you follow a link from another site?
14 | Links from other sites can sometimes be outdated or misspelled.
15 |
Comments are closed.
14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /css/global.css: -------------------------------------------------------------------------------- 1 | div { position: relative; } 2 | 3 | /* does not support IE 6/7 */ 4 | .clearfix:after { 5 | content:""; 6 | display:table; 7 | clear:both; 8 | } 9 | 10 | /* WordPress Presentational Classes*/ 11 | .aligncenter { display:block; margin:0 auto } 12 | .alignleft { float:left } 13 | .alignright { float:right } 14 | .wp-caption { border:1px solid #666; text-align:center; background:#ccc; padding:10px; margin:10px } -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- 1 | 2 |