├── themeisle.enc ├── images ├── neve.png └── default-thumbnail.jpg ├── screenshot.png ├── languages ├── pt_BR.mo ├── pt_BR.po └── zillah.pot ├── fonts ├── FontAwesome.otf ├── fontawesome-webfont.eot ├── fontawesome-webfont.ttf ├── fontawesome-webfont.woff └── fontawesome-webfont.woff2 ├── grunt └── aliases.yaml ├── .gitignore ├── .distignore ├── .jshintrc ├── Gruntfile.js ├── themeisle-hash.json ├── searchform.php ├── composer.json ├── template-parts ├── content-search.php ├── content-page.php ├── content-none.php ├── content-alternative.php ├── content.php ├── content-single.php └── content-single-alternative.php ├── js ├── ajax-slider-posts.js ├── skip-link-focus-fix.js ├── zillah-customizer.js ├── customizer.js └── functions.js ├── package.json ├── sidebar.php ├── 404.php ├── inc ├── class │ ├── class-zillah-category-control.php │ ├── class-zillah-google-fonts-control.php │ └── class-zillah-palette.php ├── custom-header.php ├── jetpack.php ├── extras.php ├── widgets │ └── class-zillah-about-me.php ├── template-tags.php ├── tha-theme-hooks.php ├── zillah-hooks.php ├── customizer.php └── class-zillah-theme-plugin-enhancements.php ├── phpcs.xml ├── single.php ├── page.php ├── search.php ├── archive.php ├── .travis.yml ├── css ├── admin-style.css ├── bootstrap-theme.min.css.map └── bootstrap-theme.min.css ├── index.php ├── footer.php ├── comments.php ├── header.php ├── readme.txt ├── CHANGELOG.md ├── readme.md └── rtl.css /themeisle.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/zillah/HEAD/themeisle.enc -------------------------------------------------------------------------------- /images/neve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/zillah/HEAD/images/neve.png -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/zillah/HEAD/screenshot.png -------------------------------------------------------------------------------- /languages/pt_BR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/zillah/HEAD/languages/pt_BR.mo -------------------------------------------------------------------------------- /fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/zillah/HEAD/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /images/default-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/zillah/HEAD/images/default-thumbnail.jpg -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/zillah/HEAD/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/zillah/HEAD/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/zillah/HEAD/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/zillah/HEAD/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /grunt/aliases.yaml: -------------------------------------------------------------------------------- 1 | #Check code of the theme 2 | check: 3 | - 'phpcbf' 4 | - 'makepot' 5 | - 'travis' 6 | generate: 7 | description: 'Generic task.' 8 | tasks: [] -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # IntelliJ project files 2 | .idea 3 | *.iml 4 | out 5 | gen 6 | node_modules 7 | logs 8 | npm-debug.log 9 | dist 10 | artifact 11 | vendor 12 | bin 13 | composer.lock 14 | package-lock.json -------------------------------------------------------------------------------- /.distignore: -------------------------------------------------------------------------------- 1 | .git 2 | .distignore 3 | .gitignore 4 | .travis.yml 5 | .jshintrc 6 | Gruntfile.js 7 | grunt 8 | phpcs.xml 9 | node_modules 10 | logs 11 | package.json 12 | npm-debug.log 13 | dist 14 | artifact 15 | composer.json 16 | composer.lock 17 | themeisle.enc -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "boss": true, 3 | "curly": true, 4 | "eqeqeq": true, 5 | "eqnull": true, 6 | "expr": true, 7 | "immed": true, 8 | "noarg": true, 9 | "nonbsp": true, 10 | "onevar": true, 11 | "quotmark": "single", 12 | "trailing": true, 13 | "undef": true, 14 | "unused": true, 15 | "browser": true, 16 | "globals": { 17 | "_": false, 18 | "Backbone": false, 19 | "jQuery": false, 20 | "JSON": false, 21 | "wp": false 22 | } 23 | } -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- 1 | // jshint node:true 2 | 3 | module.exports = function( grunt ) { 4 | 'use strict'; 5 | 6 | var loader = require( 'load-project-config' ), 7 | config = require( 'grunt-theme-fleet' ); 8 | config = config(); 9 | config.files.php.push( '!inc/admin/**/*.php' ); 10 | config.files.js.push( '!inc/admin/**/*.js' ); 11 | config.files.js.push( '!js/bootstrap.js' ); 12 | config.files.js.push( '!js/bootstrap.min.js' ); 13 | config.files.js.push( '!js/skip-link-focus-fix.js' ); 14 | loader( grunt, config ).init(); 15 | }; 16 | -------------------------------------------------------------------------------- /themeisle-hash.json: -------------------------------------------------------------------------------- 1 | {"404.php":"f339cde214321fd0a7ade20329517111","archive.php":"bf337957682d0966bff3d3a8958f2335","comments.php":"94a15f1ab6dd58e924a29ff53d51b469","footer.php":"133c5c1596c47ae25ef1050dd7e32643","functions.php":"0d794bfa0927226bebc8e80923494b77","header.php":"198ef6ec53481e3e937098dbaf344106","index.php":"edfa0a14e7f460901c4b0ba84adb29b6","page.php":"a8df4edbe9087277287027499f427b27","search.php":"7223746b36a75922a57763c88dd242a5","searchform.php":"8f279cc408472f726d6cf8220c69a7b7","sidebar.php":"a441cab84c9eed0e24b95d3a7071019e","single.php":"4bb4bb0c51c579808d50278d123cad04","rtl.css":"963991ee3049a75df28df2ec165b487b","style.css":"7981570cc1cea50da016046f4e78b7c4"} -------------------------------------------------------------------------------- /searchform.php: -------------------------------------------------------------------------------- 1 | 8 | 9 |
16 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "codeinwp/zillah", 3 | "description": "Zillah by ThemeIsle.", 4 | "homepage": "https://themeisle.com/themes/zillah/", 5 | "license": "GPL-2.0+", 6 | "authors": [ 7 | { 8 | "name": "ThemeIsle Team", 9 | "email": "friends@themeisle.com.com", 10 | "homepage": "https://themeisle.com" 11 | } 12 | ], 13 | "minimum-stability": "dev", 14 | "prefer-stable": true, 15 | "support": { 16 | "issues": "https://github.com/Codeinwp/zillah/issues", 17 | "source": "https://github.com/Codeinwp/zillah" 18 | }, 19 | "type": "wordpress-theme", 20 | "require": { 21 | "codeinwp/themeisle-sdk": "master" 22 | }, 23 | "autoload": { 24 | "files": [ 25 | "vendor/codeinwp/themeisle-sdk/load.php" 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /template-parts/content-search.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |