Project Files
0 files
0 folders
- inc
- languages
- layout
- page-templates
- sections
- template-parts
- .gitignore.gitignore.sass-cache/* psd/* node_modules/* .idea/* illdy.zip package-lock.json
- .gitmodules.gitmodulesBinary file or too large to preview
- .jscsrc.jscsrc{ "preset": "wordpress", "fileExtensions": [ ".js" ], "excludeFiles": [ "layout/js/**.min.js", "layout/js/bootstrap/*", "layout/js/classie/*", "layout/js/easypiechart/*", "layout/js/owl-carousel/*", "layout/js/pace/*", ...
- .jshintignore.jshintignore**/*.min.js
- .jshintrc.jshintrcBinary file or too large to preview
- .standard.json.standard.json{"404.php":[],"archive.php":[],"comments.php":[],"footer.php":[],"front-page.php":[],"functions.php":[],"header.php":[],"inc/back-compatible.php":[],"inc/class-illdy.php":[],"inc/class-mt-notify-system.php":[],"inc/components/author-box/class-illdy-author-box-output.php":[],"inc/components/entry-meta/class-illdy-entry-meta-output.php":[],"inc/components/related-posts/class-illdy-related-posts-output.php":[],"inc/customizer/class-epsilon-control-button.php":[],"inc/customizer/class-epsilon-contro...
- .travis.yml.travis.ymlsudo: false language: php dist: trusty matrix: fast_finish: true include: - php: '5.4' - php: '5.5' - php: '5.6' - php: '7.0' ...
- 404.php404.php<?php /** * The template for displaying the archive. * * @package WordPress * @subpackage illdy */ ?> <?php get_header(); ?> <?php ...
- CHANGELOG.txtCHANGELOG.txtBinary file or too large to preview
- Gruntfile.jsGruntfile.js'use strict'; module.exports = function(grunt){ // load all tasks require('load-grunt-tasks')(grunt, {scope: 'devDependencies'}); grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), makepot: { target: { options: { domainPath: '/languages/', // Where to save the POT file. ...
- LICENSE.txtLICENSE.txtBinary file or too large to preview
- archive.phparchive.php<?php /** * The template for displaying the archive. * * @package WordPress * @subpackage illdy */ ?> <?php get_header(); ?> <div class="container"> ...
- comments.phpcomments.php<?php /** * The template for displaying comments. * * This is the template that displays the area of the page that contains both the current comments * and the comment form. * * @link https://codex.wordpress.org/Template_Hierarchy * * @package WordPress ...
- footer.phpfooter.php<?php /** * The template for displaying the footer. * * @package WordPress * @subpackage illdy */ ?> <?php $show_footer = get_theme_mod( 'illdy_show_footer', 1 ); ...
- front-page.phpfront-page.php<?php /** * The template for displaying the front page. * Template Name: Front page layout * @package WordPress * @subpackage illdy */ get_header(); if ( get_option( 'show_on_front' ) == 'posts' ) : ?> <div class="container"> ...
- functions.phpfunctions.phpBinary file or too large to preview
- header.phpheader.php<?php /** * The template for displaying the header. * * @package WordPress * @subpackage illdy */ ?> <?php $logo_id = get_theme_mod( 'custom_logo' ); ...
- index.phpindex.php<?php /** * The template for displaying the index. * * @package WordPress * @subpackage illdy */ ?> <?php get_header(); ?> <div class="container"> ...
- package.jsonpackage.json{ "name": "illdy", "main": "Gruntfile.js", "author": "Colorlib", "version": "2.2.0", "repository": "https://github.com/puikinsh/illdy", "license": "GPL v3", "devDependencies": { "grunt": "^1.0.3", "grunt-checktextdomain": "^1.0.0", ...
- page.phppage.php<?php /** * The template for displaying the page. * * @package WordPress * @subpackage illdy */ ?> <?php get_header(); ?> <div class="container"> ...
- phpcs.ruleset.xmlphpcs.ruleset.xml<?xml version="1.0"?> <ruleset name="WordPress Coding Standards"> <!-- See https://github.com/squizlabs/PHP_CodeSniffer/wiki/Annotated-ruleset.xml --> <!-- See https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/blob/develop/WordPress-Core/ruleset.xml --> <!-- Set a description for this ruleset. --> <description>A custom set of code standard rules to check for WordPress themes and plugins.</description> <!-- Include the WordPress ruleset, with exclusions. --> <rule ref...
- readme.txtreadme.txt=== Illdy === Contributors: Colorlib Tags: blog, e-commerce, education, entertainment, news, food-and-drink, holiday, photography, portfolio Version: 2.2.0 Tested in Wordpress up to: 5.8.1 Requires PHP: 5.6 Tested in PHP up to: 8.0.9 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html == Description == ...
- screenshot.jpgscreenshot.jpgBinary file or too large to preview
- search.phpsearch.php<?php /** * The template for displaying the search. * * @package WordPress * @subpackage illdy */ ?> <?php get_header(); ?> <div class="container"> ...
- searchform.phpsearchform.php<?php /** * The template for displaying the search form in sidebar. * * @package WordPress * @subpackage illdy */ ?> <form role="search" method="get" class="search-form" action="<?php echo esc_url(home_url( '/' )); ?>"> <div class="search-form-box"> ...
- set_tags.shset_tags.sh#!/usr/bin/env bash BRANCH="master" # Are we on the right branch? if [ "$TRAVIS_BRANCH" = "$BRANCH" ]; then # Is this not a Pull Request? if [ "$TRAVIS_PULL_REQUEST" = false ]; then # Is this not a build which was triggered by setting a new tag? if [ -z "$TRAVIS_TAG" ]; then echo -e "Starting to tag commit.\n" PACKAGE_VERSION=$(node -p -e "require('./package.json').version") ...
- sidebar.phpsidebar.php<?php /** * The template for displaying the sidebar. * * @package WordPress * @subpackage illdy */ ?> <div class="col-sm-4"> <div id="sidebar"> ...
- single.phpsingle.php<?php /** * The template for displaying the single. * * @package WordPress * @subpackage illdy */ global $post; $sidebar_enabled = get_post_meta( $post->ID, 'illdy-sidebar-enable', true ); ?> ...
- style.cssstyle.css/* Theme Name: Illdy Theme URI: http://colorlib.com/wp/themes/illdy/ Author: Colorlib Author URI: http://colorlib.com Description: Illdy is a stunning multipurpose WordPress theme built based on Bootstrap frontend framework making it fully responsive and mobile friendly. This theme is well suited for business, landing page, portfolio or any other creative websites. This leaves heavy lifting to WordPress Customizer therefore you can create your website on live preview mode. Which means that you c...
- woocommerce.phpwoocommerce.php<?php /** * The template for displaying WooCommerce. * * @package WordPress * @subpackage illdy */ ?> <?php get_header(); ?> <div class="container"> ...
Select a file from project to view its contents
Bookmarks