├── readme.txt ├── images ├── 1col.png ├── 2cl.png └── 2cr.png ├── screenshot.png ├── admin ├── images │ └── ico-delete.png ├── js │ ├── options-custom.js │ └── media-uploader.js ├── options-framework.php ├── includes │ ├── class-options-media-uploader.php │ ├── class-options-framework.php │ ├── class-options-framework-admin.php │ ├── class-options-sanitization.php │ └── class-options-interface.php └── css │ └── optionsframework.css ├── library ├── fonts │ ├── genericons-regular-webfont.eot │ ├── genericons-regular-webfont.ttf │ ├── genericons-regular-webfont.woff │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── css │ ├── login.css │ └── ie.css ├── shortcodes.php ├── js │ ├── scripts.js │ └── modernizr.custom.min.js ├── wp_bootstrap_navwalker.php └── bones.php ├── .gitignore ├── README.md ├── sidebar.php ├── editor-style.css ├── 404.php ├── footer.php ├── page.php ├── page-full-width.php ├── page-left-sidebar.php ├── attachment.php ├── search.php ├── single.php ├── index.php ├── header.php ├── author.php ├── archive.php ├── comments.php ├── page-homepage.php ├── image.php ├── options.php └── LICENSE /readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/1col.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/infinitum/master/images/1col.png -------------------------------------------------------------------------------- /images/2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/infinitum/master/images/2cl.png -------------------------------------------------------------------------------- /images/2cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/infinitum/master/images/2cr.png -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/infinitum/master/screenshot.png -------------------------------------------------------------------------------- /admin/images/ico-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/infinitum/master/admin/images/ico-delete.png -------------------------------------------------------------------------------- /library/fonts/genericons-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/infinitum/master/library/fonts/genericons-regular-webfont.eot -------------------------------------------------------------------------------- /library/fonts/genericons-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/infinitum/master/library/fonts/genericons-regular-webfont.ttf -------------------------------------------------------------------------------- /library/fonts/genericons-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/infinitum/master/library/fonts/genericons-regular-webfont.woff -------------------------------------------------------------------------------- /library/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/infinitum/master/library/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /library/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/infinitum/master/library/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /library/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/infinitum/master/library/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .htaccess 2 | wp-config.php 3 | wp-content/uploads/ 4 | wp-content/blogs.dir/ 5 | wp-content/upgrade/ 6 | wp-content/backup-db/ 7 | wp-content/advanced-cache.php 8 | wp-content/wp-cache-config.php 9 | sitemap.xml 10 | *.log 11 | wp-content/cache/ 12 | wp-content/backups/ 13 | sitemap.xml.gz 14 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | infinitum 2 | ========= 3 | 4 |  5 | 6 | 7 | WordPress theme based on Bootstrap 3, Bones and Options Framework 8 | 9 | Coming soon: 10 | - Translation files and optimization for translation 11 | - WooCommerce support for full-width pages 12 | 13 | 14 | Meanwhile you can check my work at http://colorlib.com/ 15 | -------------------------------------------------------------------------------- /sidebar.php: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /editor-style.css: -------------------------------------------------------------------------------- 1 | p { 2 | margin: 0 0 9px; 3 | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; 4 | font-size: 14px; 5 | line-height: 18px; 6 | } 7 | p small { 8 | font-size: 11px; 9 | color: #999999; 10 | } 11 | h1, 12 | h2, 13 | h3, 14 | h4, 15 | h5, 16 | h6 { 17 | margin: 0; 18 | font-weight: bold; 19 | color: #333333; 20 | text-rendering: optimizelegibility; 21 | } 22 | h1 small, 23 | h2 small, 24 | h3 small, 25 | h4 small, 26 | h5 small, 27 | h6 small { 28 | font-weight: normal; 29 | color: #999999; 30 | } 31 | h1 { 32 | font-size: 30px; 33 | line-height: 36px; 34 | } 35 | h1 small { 36 | font-size: 18px; 37 | } 38 | h2 { 39 | font-size: 24px; 40 | line-height: 36px; 41 | } 42 | h2 small { 43 | font-size: 18px; 44 | } 45 | h3 { 46 | line-height: 27px; 47 | font-size: 18px; 48 | } 49 | h3 small { 50 | font-size: 14px; 51 | } 52 | h4, h5, h6 { 53 | line-height: 18px; 54 | } 55 | h4 { 56 | font-size: 14px; 57 | } 58 | h4 small { 59 | font-size: 12px; 60 | } 61 | h5 { 62 | font-size: 12px; 63 | } 64 | h6 { 65 | font-size: 11px; 66 | color: #999999; 67 | text-transform: uppercase; 68 | } -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |