body
21 |├── Template ├── Standard │ ├── README.md │ ├── js │ │ ├── main.js │ │ ├── plugins.js │ │ └── libs │ │ │ ├── modernizr-2.6.2.min.js │ │ │ └── jquery-1.9.1.min.js │ ├── favicon.ico │ ├── apple-touch-icon.png │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon-57x57-precomposed.png │ ├── apple-touch-icon-72x72-precomposed.png │ ├── apple-touch-icon-114x114-precomposed.png │ ├── apple-touch-icon-144x144-precomposed.png │ ├── css │ │ ├── style.less │ │ ├── libs │ │ │ ├── reset.css │ │ │ ├── reset.less │ │ │ └── elements.less │ │ └── style.css │ ├── humans.txt │ ├── crossdomain.xml │ ├── index.haml │ └── index.html └── iOS&Android-WeiXin │ └── cool-head-WeiXin.html ├── screenshot.png ├── .gitignore ├── cool-head-WAP2.0.html ├── README.md ├── cool-head-WeiXin.html ├── cool-head-Mobile.html ├── cool-head-HTML5.html ├── cool-head.haml ├── cool-head.html ├── branches ├── cool-head-for-WordPress-XHTML1.0.php └── cool-head-for-WordPress-HTML5.php ├── cool-head-with-comments.html └── css ├── reset.css └── reset.less /Template/Standard/README.md: -------------------------------------------------------------------------------- 1 | # Title 2 | 3 | Description -------------------------------------------------------------------------------- /Template/Standard/js/main.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function($) { 2 | 3 | }); 4 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzlzh/cool-head/HEAD/screenshot.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *.D_Store 3 | /__ 4 | *.sublime-project 5 | *.sublime-workspace 6 | *.sprt -------------------------------------------------------------------------------- /Template/Standard/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzlzh/cool-head/HEAD/Template/Standard/favicon.ico -------------------------------------------------------------------------------- /Template/Standard/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzlzh/cool-head/HEAD/Template/Standard/apple-touch-icon.png -------------------------------------------------------------------------------- /Template/Standard/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzlzh/cool-head/HEAD/Template/Standard/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /Template/Standard/apple-touch-icon-57x57-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzlzh/cool-head/HEAD/Template/Standard/apple-touch-icon-57x57-precomposed.png -------------------------------------------------------------------------------- /Template/Standard/apple-touch-icon-72x72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzlzh/cool-head/HEAD/Template/Standard/apple-touch-icon-72x72-precomposed.png -------------------------------------------------------------------------------- /Template/Standard/apple-touch-icon-114x114-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzlzh/cool-head/HEAD/Template/Standard/apple-touch-icon-114x114-precomposed.png -------------------------------------------------------------------------------- /Template/Standard/apple-touch-icon-144x144-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzlzh/cool-head/HEAD/Template/Standard/apple-touch-icon-144x144-precomposed.png -------------------------------------------------------------------------------- /Template/Standard/css/style.less: -------------------------------------------------------------------------------- 1 | /* 2 | @name: ### 3 | @author: hzlzh(hzlzh.dev@gmail.com) 4 | */ 5 | @import "libs/reset"; 6 | @import "libs/elements"; 7 | 8 | body{} -------------------------------------------------------------------------------- /cool-head-WAP2.0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |body
21 |body
21 |body
46 |