Pages: ', 'after' => '
', 'next_or_number' => 'number')); ?> 19 | 20 |Not found
13 | :(
14 |├── html5-boilerplate ├── js │ ├── main.js │ ├── plugins.js │ └── vendor │ │ ├── modernizr-2.6.1.min.js │ │ └── jquery-1.8.0.min.js ├── .gitignore ├── robots.txt ├── crossdomain.xml ├── README.markdown ├── index.html ├── 404.html ├── css │ ├── main.css │ └── normalize.css └── demo │ └── elements.html ├── screenshot.png ├── images ├── favicon.ico └── apple-touch-icon.png ├── 404.php ├── links.php ├── archives.php ├── page.php ├── search.php ├── index.php ├── style.css ├── footer.php ├── header.php ├── single.php ├── image.php ├── functions.php ├── README.markdown ├── archive.php ├── sidebar.php └── comments.php /html5-boilerplate/js/main.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /html5-boilerplate/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | .sass-cache 4 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchase/html5-boilerplate-for-wordpress/master/screenshot.png -------------------------------------------------------------------------------- /images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchase/html5-boilerplate-for-wordpress/master/images/favicon.ico -------------------------------------------------------------------------------- /images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchase/html5-boilerplate-for-wordpress/master/images/apple-touch-icon.png -------------------------------------------------------------------------------- /html5-boilerplate/robots.txt: -------------------------------------------------------------------------------- 1 | # www.robotstxt.org/ 2 | # www.google.com/support/webmasters/bin/answer.py?hl=en&answer=156449 3 | 4 | User-agent: * 5 | 6 | -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- 1 | 8 | 9 |
:(
14 |Pages: ', 'after' => '
', 'next_or_number' => 'number')); ?> 19 | 20 |