readme.txt 0000644 00000006544 15021224053 0006545 0 ustar 00 === Business Club ===
Contributors: axlethemes
Requires at least: 4.7
Requires PHP: 5.2
Tested up to: 5.2.1
Stable tag: 2.0.2
License: GPLv3
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Copyright: (c) 2019 Axle Themes
Business WordPress Theme
== Description ==
Business Club is a multipurpose elegant and clean WordPress theme with premium look, feel and features that can be used for not only business websites but also for other WordPress sites like educational institutes, personal portfolio, blogging, etc. Business Club is simplistic but very elegant and mesmerizing theme which has all the features that you need handcrafted into it. Even with all the dazzling features the theme is optimized with a standard coding, frequent maintenance and expert quality assurance so that you will never have to compromise quality and speed. Demo - https://axlethemes.com/theme-demo/?demo=business-club
== Copyright ==
Business Club WordPress Theme, Copyright 2019 Axle Themes
Business Club is distributed under the terms of the GNU GPL
== Installation ==
1. In your admin panel, go to Appearance > Themes and click the Add New button.
2. Click Upload and Choose File, then select the theme's .zip file. Click Install Now.
3. Click Activate to use your new theme right away.
== Note ==
* Background Color applies to all pages except static front page.
== Changelog ==
= 2.0.2 - Jun 10 2019 =
* Demo content updated
* Readme info updated
= 2.0.1 - May 10 2019 =
* Frontpage template added
* Compatible with Elementor page builder
= 1.1.1 - May 10 2018 =
* Fix comment form
* Bug fixes
= 1.1.0 - Dec 10 2017 =
* Integrate demo importer
* Bug fixes
= 1.0.9 - Nov 26 2017 =
* WP 4.9 compatibility check
* Bug fixes
= 1.0.8 - Jul 24 2017 =
* WP 4.8 compatibility check
* Bug fixes
= 1.0.7 - Feb 28 2017 =
* Implement admin editor style
* Bug fixes
= 1.0.6 - Feb 16 2017 =
* Bug fixes
= 1.0.5 - Jan 30 2017 =
* Add top header
* Add WooCommerce support
* Few CSS bugs
= 1.0.4 - Jan 28 2017 =
* Fix prefixing in JS
* Add Theme URL
* Few CSS bugs
* Bugs fixes
= 1.0.3 - Jan 24 2017 =
* Few CSS bugs
* Bugs fixes
= 1.0.2 - Jan 22 2017 =
* Fix background color issue
* Bugs fixes
= 1.0.1 - Jan 14 2017 =
* Add widgets
* Bugs fixes
= 1.0.0 - Sep 7 2016 =
* Initial release
== Credits ==
* Based on Underscores http://underscores.me/, (C) 2012-2017 Automattic, Inc., [GPLv2 or later](https://www.gnu.org/licenses/gpl-2.0.html)
* normalize.css http://necolas.github.io/normalize.css/, (C) 2012-2015 Nicolas Gallagher and Jonathan Neal, [MIT](http://opensource.org/licenses/MIT)
* Cycle2 released by Mike Alsup (http://jquery.malsup.com/cycle2/) under MIT and GPL license
* Font Awesome: http://fontawesome.io/, (c) Dave Gandy, CSS - [MIT](http://opensource.org/licenses/MIT) ; Fonts - [SIL OFL 1.1](http://scripts.sil.org/OFL)
* Breadcrumb Trail (http://themehybrid.com/plugins/breadcrumb-trail) under GPLv2 license
* Sidr - https://www.berriart.com/sidr/ [MIT](http://opensource.org/licenses/MIT)
* TRT Customizer Pro https://github.com/justintadlock/trt-customizer-pro, (c) 2016 Justin Tadlock, [GPLv2 or later](https://www.gnu.org/licenses/gpl-2.0.html)
* TGM - http://tgmpluginactivation.com/ [GPLv2 or later](https://www.gnu.org/licenses/gpl-2.0.html)
== Images ==
License: [CC0](https://creativecommons.org/publicdomain/zero/1.0/deed.en)
* https://pixabay.com/en/groom-wedding-marry-marriage-man-1578190/
search.php 0000644 00000002717 15021224053 0006523 0 ustar 00
home.php 0000644 00000002111 15021224053 0006172 0 ustar 00
archive.php 0000644 00000002273 15021224053 0006674 0 ustar 00
functions.php 0000644 00000016467 15021224053 0007275 0 ustar 00 esc_html__( 'Primary Menu', 'business-club' ),
'footer' => esc_html__( 'Footer Menu', 'business-club' ),
'social' => esc_html__( 'Social Menu', 'business-club' ),
) );
// Add support for HTML5 markup.
add_theme_support( 'html5', array(
'comment-form',
'comment-list',
'gallery',
'caption',
) );
// Set up the WordPress core custom background feature.
add_theme_support( 'custom-background', apply_filters( 'business_club_custom_background_args', array(
'default-color' => 'F1F0F0',
'default-image' => '',
) ) );
// Enable support for selective refresh of widgets in Customizer.
add_theme_support( 'customize-selective-refresh-widgets' );
$min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
// Enable admin editor style.
add_editor_style( array( business_club_fonts_url(), 'css/editor-style' . $min . '.css' ) );
// Enable support for custom logo.
add_theme_support( 'custom-logo', array(
'width' => 95,
'height' => 95,
) );
}
endif;
add_action( 'after_setup_theme', 'business_club_setup' );
/**
* Set the content width in pixels, based on the theme's design and stylesheet.
*
* Priority 0 to make it available to lower priority callbacks.
*
* @global int $content_width
*/
function business_club_content_width() {
$GLOBALS['content_width'] = apply_filters( 'business_club_content_width', 640 );
}
add_action( 'after_setup_theme', 'business_club_content_width', 0 );
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
function business_club_widgets_init() {
register_sidebar( array(
'name' => esc_html__( 'Primary Sidebar', 'business-club' ),
'id' => 'sidebar-1',
'description' => esc_html__( 'Add widgets here to appear in your Primary Sidebar.', 'business-club' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Secondary Sidebar', 'business-club' ),
'id' => 'sidebar-2',
'description' => esc_html__( 'Add widgets here to appear in your Secondary Sidebar.', 'business-club' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Front Page Widget Area', 'business-club' ),
'id' => 'sidebar-front-page-widget-area',
'description' => esc_html__( 'Add widgets here to appear in your Front Page.', 'business-club' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => sprintf( esc_html__( 'Footer %d', 'business-club' ), 1 ),
'id' => 'footer-1',
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => sprintf( esc_html__( 'Footer %d', 'business-club' ), 2 ),
'id' => 'footer-2',
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => sprintf( esc_html__( 'Footer %d', 'business-club' ), 3 ),
'id' => 'footer-3',
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => sprintf( esc_html__( 'Footer %d', 'business-club' ), 4 ),
'id' => 'footer-4',
'before_widget' => '',
'before_title' => '',
) );
}
add_action( 'widgets_init', 'business_club_widgets_init' );
/**
* Enqueue scripts and styles.
*/
function business_club_scripts() {
$min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/vendors/font-awesome/css/font-awesome' . $min . '.css', '', '4.7.0' );
$fonts_url = business_club_fonts_url();
if ( ! empty( $fonts_url ) ) {
wp_enqueue_style( 'business-club-google-fonts', $fonts_url, array(), null );
}
wp_enqueue_style( 'jquery-sidr', get_template_directory_uri() . '/vendors/sidr/css/jquery.sidr.dark' . $min . '.css', '', '2.2.1' );
wp_enqueue_style( 'business-club-style', get_stylesheet_uri(), array(), '2.0.2' );
wp_enqueue_script( 'business-club-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix' . $min . '.js', array(), '20130115', true );
wp_enqueue_script( 'jquery-cycle2', get_template_directory_uri() . '/vendors/cycle2/js/jquery.cycle2' . $min . '.js', array( 'jquery' ), '2.1.6', true );
wp_enqueue_script( 'jquery-sidr', get_template_directory_uri() . '/vendors/sidr/js/jquery.sidr' . $min . '.js', array( 'jquery' ), '2.2.1', true );
wp_enqueue_script( 'business-club-custom', get_template_directory_uri() . '/js/custom' . $min . '.js', array( 'jquery' ), '2.0.2', true );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'business_club_scripts' );
/**
* Enqueue admin scripts and styles.
*
* @since 1.0.0
*
* @param string $hook Hook name.
*/
function business_club_admin_scripts( $hook ) {
$min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
if ( 'widgets.php' === $hook ) {
wp_enqueue_media();
wp_enqueue_style( 'business-club-widgets', get_template_directory_uri() . '/css/widgets' . $min . '.css', array(), '2.0.2' );
wp_enqueue_script( 'business-club-widgets', get_template_directory_uri() . '/js/widgets' . $min . '.js', array( 'jquery' ), '2.0.2', true );
}
}
add_action( 'admin_enqueue_scripts', 'business_club_admin_scripts' );
// Load starting file.
require_once trailingslashit( get_template_directory() ) . 'includes/start.php';
css/customize-controls.min.css 0000644 00000001030 15021224053 0012477 0 ustar 00 #customize-controls .control-section-upsell .accordion-section-title:focus,#customize-controls .control-section-upsell .accordion-section-title:hover{background-color:#fff}.control-section-upsell .accordion-section-title .button{color:#fff;margin-top:-4px;font-weight:400;margin-left:8px;border-color:#355c9e;background-color:#355c9e}.control-section-upsell .accordion-section-title .button:hover{border-color:#2c4d85;background-color:#2c4d85}.rtl .control-section-upsell .accordion-section-title .button{margin-left:0;margin-right:8px} css/editor-style.min.css 0000644 00000003164 15021224053 0011252 0 ustar 00 body,p{color:#666}pre,textarea{overflow:auto}img,pre{max-width:100%}a,a:visited{color:#323232}body{font-size:13px;line-height:1.7;font-family:'Open Sans',sans-serif}h1,h2,h3,h4,h5,h6,p{margin:0 0 15px}h1,h2,h3,h4,h5,h6{color:#4e5052;font-weight:500;font-family:Poppins,sans-serif}h1{font-size:30px}h2{font-size:22px}h3,h4{font-size:18px}h5{font-size:16px}h6{font-size:14px}cite,dfn,em,i{font-style:italic}blockquote{margin:0 1.5em}address{margin:0 0 1.5em}pre{background:#eee;font-family:"Courier 10 Pitch",Courier,monospace;font-size:15px;font-size:.9375rem;line-height:1.6;margin-bottom:1.6em;padding:1.6em}code,kbd,tt,var{font-family:Monaco,Consolas,"Andale Mono","DejaVu Sans Mono",monospace;font-size:15px;font-size:.9375rem}abbr,acronym{border-bottom:1px dotted #666;cursor:help}ins,mark{background:#fff9c0;text-decoration:none}big{font-size:125%}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}dt,optgroup{font-weight:700}blockquote::after,blockquote::before,q::after,q::before{content:""}hr{background-color:#ccc;border:0;height:1px;margin-bottom:1.5em}ul{list-style:disc}ol{list-style:decimal}li>ol,li>ul{margin-bottom:0;margin-left:1.5em}ol,ul{margin:0 0 .5em 1em;padding:0}dd{margin:0 1.5em 1.5em}img{height:auto}table{border-collapse:collapse;border-spacing:0;margin:0 0 1.5em;width:100%}.mce-item-table td,.mce-item-table th,td,th{border:1px solid #ddd;padding:5px}blockquote,q{quotes:"" "";padding-left:15px;border-left:5px solid #179bd7;display:block;margin-bottom:15px}a{text-decoration:inherit}a:active,a:focus,a:hover{color:#179bd7}a:focus{outline:inherit}a:active,a:hover{outline:0} css/customize-controls.css 0000644 00000001120 15021224053 0011715 0 ustar 00 #customize-controls .control-section-upsell .accordion-section-title:hover,
#customize-controls .control-section-upsell .accordion-section-title:focus {
background-color: #fff;
}
.control-section-upsell .accordion-section-title .button {
color: #fff;
margin-top: -4px;
font-weight: 400;
margin-left: 8px;
border-color: #355c9e;
background-color: #355c9e;
}
.control-section-upsell .accordion-section-title .button:hover {
border-color: #2c4d85;
background-color: #2c4d85;
}
.rtl .control-section-upsell .accordion-section-title .button {
margin-left: 0;
margin-right: 8px;
}
css/widgets.css 0000644 00000000202 15021224053 0007500 0 ustar 00 .image-preview-wrap {
margin-top: 5px;
margin-bottom: 10px;
}
.image-preview-wrap img {
max-width: 100%;
max-height: 200px;
}
css/widgets.min.css 0000644 00000000156 15021224053 0010272 0 ustar 00 .image-preview-wrap{margin-top:5px;margin-bottom:10px}.image-preview-wrap img{max-width:100%;max-height:200px} css/editor-style.css 0000644 00000005510 15021224053 0010465 0 ustar 00
/*===========================================================
# Typography
===========================================================*/
body {
font-size: 13px;
line-height: 1.7;
color: #666666;
font-family: 'Open Sans', sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
margin: 0 0 15px 0;
}
h1, h2, h3, h4, h5, h6 {
color: #4e5052;
font-weight: 500;
font-family: 'Poppins', sans-serif;
}
h1 {
font-size: 30px;
}
h2 {
font-size: 22px;
}
h3{
font-size: 18px;
}
h4 {
font-size: 18px;
}
h5 {
font-size: 16px;
}
h6 {
font-size: 14px;
}
p {
color:#666;
}
dfn,
cite,
em,
i {
font-style: italic;
}
blockquote {
margin: 0 1.5em;
}
address {
margin: 0 0 1.5em;
}
pre {
background: #eee;
font-family: "Courier 10 Pitch", Courier, monospace;
font-size: 15px;
font-size: 0.9375rem;
line-height: 1.6;
margin-bottom: 1.6em;
max-width: 100%;
overflow: auto;
padding: 1.6em;
}
code,
kbd,
tt,
var {
font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
font-size: 15px;
font-size: 0.9375rem;
}
abbr,
acronym {
border-bottom: 1px dotted #666;
cursor: help;
}
mark,
ins {
background: #fff9c0;
text-decoration: none;
}
big {
font-size: 125%;
}
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em;
}
legend {
border: 0;
padding: 0;
}
textarea {
overflow: auto;
}
optgroup {
font-weight: bold;
}
blockquote::before,
blockquote::after,
q::before,
q::after {
content: "";
}
blockquote,
q {
quotes: "" "";
}
hr {
background-color: #ccc;
border: 0;
height: 1px;
margin-bottom: 1.5em;
}
ul,
ol {
margin: 0 0 1.5em 3em;
}
ul {
list-style: disc;
}
ol {
list-style: decimal;
}
li > ul,
li > ol {
margin-bottom: 0;
margin-left: 1.5em;
}
ul, ol {
margin: 0 0 0.5em 1em;
padding: 0;
}
dt {
font-weight: bold;
}
dd {
margin: 0 1.5em 1.5em;
}
img {
height: auto; /* Make sure images are scaled correctly. */
max-width: 100%; /* Adhere to container width. */
}
table {
border-collapse: collapse;
border-spacing: 0;
margin: 0 0 1.5em;
width: 100%;
}
td, th,
.mce-item-table td,
.mce-item-table th {
border: 1px solid #ddd;
padding: 5px;
}
blockquote, q {
quotes: "" "";
padding-left: 15px;
border-left: 5px solid #179bd7;
display: block;
margin-bottom: 15px;
}
/*===========================================================
**************************** Links *************************
===========================================================*/
a {
color: #323232;
text-decoration: inherit;
}
a:visited {
color: #323232;
}
a:hover,
a:focus,
a:active {
color: #179bd7;
}
a:focus {
outline:inherit;
}
a:hover,
a:active {
outline: 0;
}
header.php 0000644 00000003401 15021224053 0006475 0 ustar 00 section and everything up until
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package Business_Club
*/
?>
>
screenshot.png 0000644 00000654506 15021224053 0007441 0 ustar 00 PNG
IHDR 8 [PLTEtvs~}z{x||z}zxzwxxudZpJ>rPDzmcnhowLA?JYKS^FNYd_\_Wia
ܐlHs
( ,\
<%K&0B_$-9߭͵)?T!ҷ-5Aa|ɐUI~kئx&$#;4/
jpV3wAm1)2:HHKQ8'h[O?٘2+*
¼{а2/ @?BL$VoU umHSd\foCN`H3QZe @GHlsySSX}dI&^WT~qkjbbbhOFAE;6QG~xkhcUY8gbtU7y?5rVK