commit 32875f828d099bf4cdcd573d3c848cc8b6148449
Author: Thuan Bui
Date: Thu Sep 13 20:49:49 2018 +0700
Initial commit
diff --git a/.csscomb.json b/.csscomb.json
new file mode 100755
index 0000000..ce88a00
--- /dev/null
+++ b/.csscomb.json
@@ -0,0 +1,25 @@
+{
+ "always-semicolon": true,
+ "block-indent": "\t",
+ "color-case": "lower",
+ "color-shorthand": false,
+ "element-case": "lower",
+ "eof-newline": true,
+ "leading-zero": true,
+ "quotes": "single",
+ "remove-empty-rulesets": true,
+ "rule-delimiter": "\n\n",
+ "space-after-colon": " ",
+ "space-after-combinator": " ",
+ "space-after-opening-brace": "\n",
+ "space-after-selector-delimiter": "\n",
+ "space-before-closing-brace": "\n",
+ "space-before-colon": "",
+ "space-before-combinator": " ",
+ "space-before-opening-brace": " ",
+ "space-before-selector-delimiter": "",
+ "space-between-declarations": "\n",
+ "strip-spaces": true,
+ "unitless-zero": true,
+ "vendor-prefix-align": true
+}
\ No newline at end of file
diff --git a/.editorconfig b/.editorconfig
new file mode 100755
index 0000000..3815937
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,25 @@
+# This file is for unifying the coding style for different editors and IDEs
+# editorconfig.org
+
+# WordPress Coding Standards
+# http://make.wordpress.org/core/handbook/coding-standards/
+
+root = true
+
+[*]
+charset = utf-8
+end_of_line = lf
+insert_final_newline = true
+trim_trailing_whitespace = true
+indent_style = tab
+indent_size = 4
+
+[{.*rc,*.json,*.yml}]
+indent_style = space
+indent_size = 2
+
+[*.txt]
+end_of_line = crlf
+
+[*.md]
+trim_trailing_whitespace = false
diff --git a/.gitignore b/.gitignore
new file mode 100755
index 0000000..d42f128
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,8 @@
+# Ignore OS generated files
+.DS_Store
+
+# Ignore node_modules.
+node_modules/
+
+# Ignore composer.
+vendor/
diff --git a/.jsbeautifyrc b/.jsbeautifyrc
new file mode 100755
index 0000000..d075d5a
--- /dev/null
+++ b/.jsbeautifyrc
@@ -0,0 +1,23 @@
+{
+ "indent_size": 4,
+ "indent_char": " ",
+ "indent_with_tabs": true,
+ "eol": "\n",
+ "end_with_newline": true,
+ "indent_level": 0,
+ "preserve_newlines": true,
+ "max_preserve_newlines": 10,
+ "space_in_paren": true,
+ "space_in_empty_paren": false,
+ "jslint_happy": true,
+ "space_after_anon_function": true,
+ "brace_style": "collapse",
+ "unindent_chained_methods": true,
+ "break_chained_methods": false,
+ "keep_array_indentation": true,
+ "unescape_strings": false,
+ "wrap_line_length": 0,
+ "e4x": false,
+ "comma_first": false,
+ "operator_position": "before-newline"
+}
\ No newline at end of file
diff --git a/.stylelintignore b/.stylelintignore
new file mode 100755
index 0000000..a994b90
--- /dev/null
+++ b/.stylelintignore
@@ -0,0 +1,6 @@
+# Ignore vendor directories.
+node_modules/*
+vendor/*
+
+# Ignore minified styles.
+*.min.css
diff --git a/.stylelintscssrc.js b/.stylelintscssrc.js
new file mode 100755
index 0000000..f775008
--- /dev/null
+++ b/.stylelintscssrc.js
@@ -0,0 +1,318 @@
+'use strict';
+
+module.exports = {
+ extends: ['stylelint-config-wordpress/scss', 'prettier-stylelint/index.js'],
+ plugins: 'stylelint-order',
+ rules: {
+ 'max-line-length': 255,
+ 'declaration-block-no-duplicate-properties': [
+ true,
+ {
+ ignore: ['consecutive-duplicates-with-different-values']
+ }
+ ],
+ 'order/order': [
+ 'at-variables',
+ 'dollar-variables',
+ 'custom-properties',
+ 'declarations'
+ ],
+ 'order/properties-order': [
+ 'display',
+ 'visibility',
+ 'float',
+ 'clear',
+ 'overflow',
+ 'overflow-x',
+ 'overflow-y',
+ '-ms-overflow-x',
+ '-ms-overflow-y',
+ 'clip',
+ 'zoom',
+ 'flex-direction',
+ 'flex-order',
+ 'flex-pack',
+ 'flex-align',
+
+ 'position',
+ 'z-index',
+ 'top',
+ 'right',
+ 'bottom',
+ 'left',
+
+ '-webkit-box-sizing',
+ '-moz-box-sizing',
+ 'box-sizing',
+ 'width',
+ 'min-width',
+ 'max-width',
+ 'height',
+ 'min-height',
+ 'max-height',
+ 'margin',
+ 'margin-top',
+ 'margin-right',
+ 'margin-bottom',
+ 'margin-left',
+ 'padding',
+ 'padding-top',
+ 'padding-right',
+ 'padding-bottom',
+ 'padding-left',
+ 'border',
+ 'border-width',
+ 'border-style',
+ 'border-color',
+ 'border-top',
+ 'border-top-width',
+ 'border-top-style',
+ 'border-top-color',
+ 'border-right',
+ 'border-right-width',
+ 'border-right-style',
+ 'border-right-color',
+ 'border-bottom',
+ 'border-bottom-width',
+ 'border-bottom-style',
+ 'border-bottom-color',
+ 'border-left',
+ 'border-left-width',
+ 'border-left-style',
+ 'border-left-color',
+ '-webkit-border-radius',
+ '-moz-border-radius',
+ 'border-radius',
+ '-webkit-border-top-left-radius',
+ '-moz-border-radius-topleft',
+ 'border-top-left-radius',
+ '-webkit-border-top-right-radius',
+ '-moz-border-radius-topright',
+ 'border-top-right-radius',
+ '-webkit-border-bottom-right-radius',
+ '-moz-border-radius-bottomright',
+ 'border-bottom-right-radius',
+ '-webkit-border-bottom-left-radius',
+ '-moz-border-radius-bottomleft',
+ 'border-bottom-left-radius',
+ '-webkit-border-image',
+ '-moz-border-image',
+ '-o-border-image',
+ 'border-image',
+ '-webkit-border-image-source',
+ '-moz-border-image-source',
+ '-o-border-image-source',
+ 'border-image-source',
+ '-webkit-border-image-slice',
+ '-moz-border-image-slice',
+ '-o-border-image-slice',
+ 'border-image-slice',
+ '-webkit-border-image-width',
+ '-moz-border-image-width',
+ '-o-border-image-width',
+ 'border-image-width',
+ '-webkit-border-image-outset',
+ '-moz-border-image-outset',
+ '-o-border-image-outset',
+ 'border-image-outset',
+ '-webkit-border-image-repeat',
+ '-moz-border-image-repeat',
+ '-o-border-image-repeat',
+ 'border-image-repeat',
+ 'table-layout',
+ 'empty-cells',
+ 'caption-side',
+ 'border-spacing',
+ 'border-collapse',
+
+ 'outline',
+ 'outline-width',
+ 'outline-style',
+ 'outline-color',
+ 'outline-offset',
+ 'opacity',
+ 'filter:progid:DXImageTransform.Microsoft.Alpha(Opacity',
+ "-ms-filter:\\'progid:DXImageTransform.Microsoft.Alpha",
+ '-ms-interpolation-mode',
+ 'color',
+ 'background',
+ 'filter:progid:DXImageTransform.Microsoft.AlphaImageLoader',
+ 'background-color',
+ 'background-image',
+ 'background-repeat',
+ 'background-attachment',
+ 'background-position',
+ 'background-position-x',
+ '-ms-background-position-x',
+ 'background-position-y',
+ '-ms-background-position-y',
+ '-webkit-background-clip',
+ '-moz-background-clip',
+ 'background-clip',
+ 'background-origin',
+ '-webkit-background-size',
+ '-moz-background-size',
+ '-o-background-size',
+ 'background-size',
+ 'box-decoration-break',
+ '-webkit-box-shadow',
+ '-moz-box-shadow',
+ 'box-shadow',
+ 'filter:progid:DXImageTransform.Microsoft.gradient',
+ "-ms-filter:\\'progid:DXImageTransform.Microsoft.gradient",
+ 'text-shadow',
+ 'font',
+ 'font-family',
+ 'src',
+ 'font-size',
+ 'font-weight',
+ 'font-style',
+ 'font-variant',
+ 'font-size-adjust',
+ 'font-stretch',
+ 'font-effect',
+ 'font-emphasize',
+ 'font-emphasize-position',
+ 'font-emphasize-style',
+ '-webkit-font-smoothing',
+ '-moz-osx-font-smoothing',
+ 'font-smooth',
+ 'line-height',
+ 'text-align',
+ '-webkit-text-align-last',
+ '-moz-text-align-last',
+ '-ms-text-align-last',
+ 'text-align-last',
+ 'vertical-align',
+ 'white-space',
+ 'text-decoration',
+ 'text-emphasis',
+ 'text-emphasis-color',
+ 'text-emphasis-style',
+ 'text-emphasis-position',
+ 'text-indent',
+ '-ms-text-justify',
+ 'text-justify',
+ 'letter-spacing',
+ 'word-spacing',
+ '-ms-writing-mode',
+ 'text-outline',
+ 'text-transform',
+ 'text-wrap',
+ 'text-overflow',
+ '-ms-text-overflow',
+ 'text-overflow-ellipsis',
+ 'text-overflow-mode',
+ '-ms-word-wrap',
+ 'word-wrap',
+ 'word-break',
+ '-ms-word-break',
+ '-moz-tab-size',
+ '-o-tab-size',
+ 'tab-size',
+ '-webkit-hyphens',
+ '-moz-hyphens',
+ 'hyphens',
+
+ 'list-style',
+ 'list-style-position',
+ 'list-style-type',
+ 'list-style-image',
+ 'content',
+ 'quotes',
+ 'counter-reset',
+ 'counter-increment',
+ 'resize',
+ 'cursor',
+ '-webkit-user-select',
+ '-moz-user-select',
+ '-ms-user-select',
+ 'user-select',
+ 'nav-index',
+ 'nav-up',
+ 'nav-right',
+ 'nav-down',
+ 'nav-left',
+ '-webkit-transition',
+ '-moz-transition',
+ '-ms-transition',
+ '-o-transition',
+ 'transition',
+ '-webkit-transition-delay',
+ '-moz-transition-delay',
+ '-ms-transition-delay',
+ '-o-transition-delay',
+ 'transition-delay',
+ '-webkit-transition-timing-function',
+ '-moz-transition-timing-function',
+ '-ms-transition-timing-function',
+ '-o-transition-timing-function',
+ 'transition-timing-function',
+ '-webkit-transition-duration',
+ '-moz-transition-duration',
+ '-ms-transition-duration',
+ '-o-transition-duration',
+ 'transition-duration',
+ '-webkit-transition-property',
+ '-moz-transition-property',
+ '-ms-transition-property',
+ '-o-transition-property',
+ 'transition-property',
+ '-webkit-transform',
+ '-moz-transform',
+ '-ms-transform',
+ '-o-transform',
+ 'transform',
+ '-webkit-transform-origin',
+ '-moz-transform-origin',
+ '-ms-transform-origin',
+ '-o-transform-origin',
+ 'transform-origin',
+ '-webkit-animation',
+ '-moz-animation',
+ '-ms-animation',
+ '-o-animation',
+ 'animation',
+ '-webkit-animation-name',
+ '-moz-animation-name',
+ '-ms-animation-name',
+ '-o-animation-name',
+ 'animation-name',
+ '-webkit-animation-duration',
+ '-moz-animation-duration',
+ '-ms-animation-duration',
+ '-o-animation-duration',
+ 'animation-duration',
+ '-webkit-animation-play-state',
+ '-moz-animation-play-state',
+ '-ms-animation-play-state',
+ '-o-animation-play-state',
+ 'animation-play-state',
+ '-webkit-animation-timing-function',
+ '-moz-animation-timing-function',
+ '-ms-animation-timing-function',
+ '-o-animation-timing-function',
+ 'animation-timing-function',
+ '-webkit-animation-delay',
+ '-moz-animation-delay',
+ '-ms-animation-delay',
+ '-o-animation-delay',
+ 'animation-delay',
+ '-webkit-animation-iteration-count',
+ '-moz-animation-iteration-count',
+ '-ms-animation-iteration-count',
+ '-o-animation-iteration-count',
+ 'animation-iteration-count',
+ '-webkit-animation-direction',
+ '-moz-animation-direction',
+ '-ms-animation-direction',
+ '-o-animation-direction',
+ 'animation-direction',
+ '-webkit-backface-visibility',
+ '-moz-backface-visibility',
+ 'backface-visibility',
+ 'text-rendering',
+ 'pointer-events'
+ ]
+ }
+};
diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100755
index 0000000..dc601a7
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,63 @@
+# Corporate Pro Theme Changelog
+
+## [1.0.1] - 2018-06-23
+* Add support for non-slider hero
+* Add alt-text to category and tag icons
+* Add stylelint
+* Fix color contrast of links
+* Fix button text color in footer
+* Fix CSS conflict with Slick Slider and Elementor plugin
+* Fix front page widget area descriptions
+* Fix view cart link alignment
+
+## [1.0.0] - 2018-04-18
+* Add support for Genesis Title Toggle plugin
+* Add option to disable search form in primary nav
+* Add missing hidden files
+* Add support for search and 404 pages excerpt and featured images
+* Add custom class for front page 4 image
+* Add some spacing between footer widgets
+* Add page layouts for search & 404. Also clean up hero markup
+* Update sample content
+* Update docblock @since tags
+* Update readme
+* Update customizer color settings
+* Fix SSI inline styles undefined index when inactive
+* Fix footer widget .button color
+* Fix squished articles in sidebar on archives.
+* Fix all PHPCS warnings in colors.php
+* Fix translation warnings and rename theme.php to general.php
+* Fix front page 3 icon widget alignment
+* Standards: minor fixes
+* Comment formatting
+* Switch to genesis widget column classes plugin
+* Rename page header to hero section same as studiopress themes
+* Fix woocommerce products per row styling
+* Simplify blog template styling
+* Styling adjustments
+* Adjust hero section padding
+* Correct logo size css output
+* Accessibility improvements - contrast and skip links
+* Standards: minor fixes
+* Increase screenshot size to 1200 x 900
+* Only add hero section itemref on singular entries
+* Improve contrast of links in footer to match sidebar
+* Refactor constants
+* Replace functions with constants for performance
+* Remove transparent header setting
+* Remove 404 page
+* Remove `.` from style.css tags
+
+## [0.1.2] - 2018-01-20
+* Added fallback in case SEO Slider is not active
+
+## [0.1.1] - 2017-12-21
+* Added theme settings JSON file
+* Updated demo content and theme screenshot
+* Fixed before header on boxed template
+* Fixed front-page-2 minimum slider width
+* Fixed sticky header class not being applied
+* Removed entry border when no search results
+
+## [0.1.0] - 2017-12-20
+* Initial beta release
diff --git a/Gulpfile.js b/Gulpfile.js
new file mode 100755
index 0000000..5dbcc98
--- /dev/null
+++ b/Gulpfile.js
@@ -0,0 +1,77 @@
+/**
+ * Gulp task config file.
+ *
+ * @package SEOThemes\GenesisStarter
+ */
+
+'use strict';
+
+var gulp = require( 'gulp' ),
+ toolkit = require( 'gulp-wp-toolkit' ),
+ pkg = require( './package.json' );
+
+toolkit.extendConfig(
+ {
+ theme: {
+ name: pkg.theme.name,
+ themeuri: pkg.theme.uri,
+ description: pkg.description,
+ author: pkg.author,
+ authoruri: pkg.theme.authoruri,
+ version: pkg.version,
+ license: pkg.license,
+ licenseuri: pkg.theme.licenseuri,
+ tags: pkg.theme.tags,
+ textdomain: pkg.theme.textdomain,
+ domainpath: pkg.theme.domainpath,
+ template: pkg.theme.template,
+ notes: pkg.theme.notes
+ },
+ src: {
+ php: ['**/*.php', '!vendor/**'],
+ images: 'assets/images/**/*',
+ scss: 'assets/styles/*.scss',
+ css: ['**/*.css', '!node_modules/**', '!develop/vendor/**'],
+ js: ['assets/scripts/*.js', '!node_modules/**'],
+ json: ['**/*.json', '!node_modules/**'],
+ i18n: 'lib/languages/'
+ },
+ css: {
+ basefontsize: 10, // Used by postcss-pxtorem.
+ remmediaquery: false,
+ scss: {
+ 'style': {
+ src: 'assets/styles/style.scss',
+ dest: './',
+ outputStyle: 'expanded'
+ },
+ 'woocommerce': {
+ src: 'assets/styles/woocommerce.scss',
+ dest: './',
+ outputStyle: 'expanded'
+ }
+ }
+ },
+ js: {
+ 'theme': [
+ 'assets/scripts/theme.js',
+ ],
+ },
+ dest: {
+ i18npo: './lib/languages/',
+ i18nmo: './lib/languages/',
+ images: './assets/images/',
+ js: './assets/scripts/min/'
+ },
+ server: {
+ proxy: 'https://yeuchaybo.test',
+ port: '8000',
+ https: {
+ 'key': '/Users/thuanbui/.valet/Certificates/yeuchaybo.test.key',
+ 'cert': '/Users/thuanbui/.valet/Certificates/yeuchaybo.test.crt'
+ }
+ }
+ }
+);
+
+toolkit.extendTasks( gulp );
diff --git a/LICENSE.md b/LICENSE.md
new file mode 100755
index 0000000..02481f6
--- /dev/null
+++ b/LICENSE.md
@@ -0,0 +1,264 @@
+The GNU General Public License, Version 2, June 1991 (GPLv2)
+============================================================
+
+> Copyright (C) 1989, 1991 Free Software Foundation, Inc.
+> 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+
+Everyone is permitted to copy and distribute verbatim copies of this license
+document, but changing it is not allowed.
+
+
+Preamble
+--------
+
+The licenses for most software are designed to take away your freedom to share
+and change it. By contrast, the GNU General Public License is intended to
+guarantee your freedom to share and change free software--to make sure the
+software is free for all its users. This General Public License applies to most
+of the Free Software Foundation's software and to any other program whose
+authors commit to using it. (Some other Free Software Foundation software is
+covered by the GNU Lesser General Public License instead.) You can apply it to
+your programs, too.
+
+When we speak of free software, we are referring to freedom, not price. Our
+General Public Licenses are designed to make sure that you have the freedom to
+distribute copies of free software (and charge for this service if you wish),
+that you receive source code or can get it if you want it, that you can change
+the software or use pieces of it in new free programs; and that you know you can
+do these things.
+
+To protect your rights, we need to make restrictions that forbid anyone to deny
+you these rights or to ask you to surrender the rights. These restrictions
+translate to certain responsibilities for you if you distribute copies of the
+software, or if you modify it.
+
+For example, if you distribute copies of such a program, whether gratis or for a
+fee, you must give the recipients all the rights that you have. You must make
+sure that they, too, receive or can get the source code. And you must show them
+these terms so they know their rights.
+
+We protect your rights with two steps: (1) copyright the software, and (2) offer
+you this license which gives you legal permission to copy, distribute and/or
+modify the software.
+
+Also, for each author's protection and ours, we want to make certain that
+everyone understands that there is no warranty for this free software. If the
+software is modified by someone else and passed on, we want its recipients to
+know that what they have is not the original, so that any problems introduced by
+others will not reflect on the original authors' reputations.
+
+Finally, any free program is threatened constantly by software patents. We wish
+to avoid the danger that redistributors of a free program will individually
+obtain patent licenses, in effect making the program proprietary. To prevent
+this, we have made it clear that any patent must be licensed for everyone's free
+use or not licensed at all.
+
+The precise terms and conditions for copying, distribution and modification
+follow.
+
+
+Terms And Conditions For Copying, Distribution And Modification
+---------------------------------------------------------------
+
+**0.** This License applies to any program or other work which contains a notice
+placed by the copyright holder saying it may be distributed under the terms of
+this General Public License. The "Program", below, refers to any such program or
+work, and a "work based on the Program" means either the Program or any
+derivative work under copyright law: that is to say, a work containing the
+Program or a portion of it, either verbatim or with modifications and/or
+translated into another language. (Hereinafter, translation is included without
+limitation in the term "modification".) Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not covered by
+this License; they are outside its scope. The act of running the Program is not
+restricted, and the output from the Program is covered only if its contents
+constitute a work based on the Program (independent of having been made by
+running the Program). Whether that is true depends on what the Program does.
+
+**1.** You may copy and distribute verbatim copies of the Program's source code
+as you receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice and
+disclaimer of warranty; keep intact all the notices that refer to this License
+and to the absence of any warranty; and give any other recipients of the Program
+a copy of this License along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and you may at
+your option offer warranty protection in exchange for a fee.
+
+**2.** You may modify your copy or copies of the Program or any portion of it,
+thus forming a work based on the Program, and copy and distribute such
+modifications or work under the terms of Section 1 above, provided that you also
+meet all of these conditions:
+
+* **a)** You must cause the modified files to carry prominent notices stating
+ that you changed the files and the date of any change.
+
+* **b)** You must cause any work that you distribute or publish, that in whole
+ or in part contains or is derived from the Program or any part thereof, to
+ be licensed as a whole at no charge to all third parties under the terms of
+ this License.
+
+* **c)** If the modified program normally reads commands interactively when
+ run, you must cause it, when started running for such interactive use in the
+ most ordinary way, to print or display an announcement including an
+ appropriate copyright notice and a notice that there is no warranty (or
+ else, saying that you provide a warranty) and that users may redistribute
+ the program under these conditions, and telling the user how to view a copy
+ of this License. (Exception: if the Program itself is interactive but does
+ not normally print such an announcement, your work based on the Program is
+ not required to print an announcement.)
+
+These requirements apply to the modified work as a whole. If identifiable
+sections of that work are not derived from the Program, and can be reasonably
+considered independent and separate works in themselves, then this License, and
+its terms, do not apply to those sections when you distribute them as separate
+works. But when you distribute the same sections as part of a whole which is a
+work based on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the entire whole,
+and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest your
+rights to work written entirely by you; rather, the intent is to exercise the
+right to control the distribution of derivative or collective works based on the
+Program.
+
+In addition, mere aggregation of another work not based on the Program with the
+Program (or with a work based on the Program) on a volume of a storage or
+distribution medium does not bring the other work under the scope of this
+License.
+
+**3.** You may copy and distribute the Program (or a work based on it, under
+Section 2) in object code or executable form under the terms of Sections 1 and 2
+above provided that you also do one of the following:
+
+* **a)** Accompany it with the complete corresponding machine-readable source
+ code, which must be distributed under the terms of Sections 1 and 2 above on
+ a medium customarily used for software interchange; or,
+
+* **b)** Accompany it with a written offer, valid for at least three years, to
+ give any third party, for a charge no more than your cost of physically
+ performing source distribution, a complete machine-readable copy of the
+ corresponding source code, to be distributed under the terms of Sections 1
+ and 2 above on a medium customarily used for software interchange; or,
+
+* **c)** Accompany it with the information you received as to the offer to
+ distribute corresponding source code. (This alternative is allowed only for
+ noncommercial distribution and only if you received the program in object
+ code or executable form with such an offer, in accord with Subsection b
+ above.)
+
+The source code for a work means the preferred form of the work for making
+modifications to it. For an executable work, complete source code means all the
+source code for all modules it contains, plus any associated interface
+definition files, plus the scripts used to control compilation and installation
+of the executable. However, as a special exception, the source code distributed
+need not include anything that is normally distributed (in either source or
+binary form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component itself
+accompanies the executable.
+
+If distribution of executable or object code is made by offering access to copy
+from a designated place, then offering equivalent access to copy the source code
+from the same place counts as distribution of the source code, even though third
+parties are not compelled to copy the source along with the object code.
+
+**4.** You may not copy, modify, sublicense, or distribute the Program except as
+expressly provided under this License. Any attempt otherwise to copy, modify,
+sublicense or distribute the Program is void, and will automatically terminate
+your rights under this License. However, parties who have received copies, or
+rights, from you under this License will not have their licenses terminated so
+long as such parties remain in full compliance.
+
+**5.** You are not required to accept this License, since you have not signed
+it. However, nothing else grants you permission to modify or distribute the
+Program or its derivative works. These actions are prohibited by law if you do
+not accept this License. Therefore, by modifying or distributing the Program (or
+any work based on the Program), you indicate your acceptance of this License to
+do so, and all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+**6.** Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the original
+licensor to copy, distribute or modify the Program subject to these terms and
+conditions. You may not impose any further restrictions on the recipients'
+exercise of the rights granted herein. You are not responsible for enforcing
+compliance by third parties to this License.
+
+**7.** If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues), conditions
+are imposed on you (whether by court order, agreement or otherwise) that
+contradict the conditions of this License, they do not excuse you from the
+conditions of this License. If you cannot distribute so as to satisfy
+simultaneously your obligations under this License and any other pertinent
+obligations, then as a consequence you may not distribute the Program at all.
+For example, if a patent license would not permit royalty-free redistribution of
+the Program by all those who receive copies directly or indirectly through you,
+then the only way you could satisfy both it and this License would be to refrain
+entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under any
+particular circumstance, the balance of the section is intended to apply and the
+section as a whole is intended to apply in other circumstances.
+
+It is not the purpose of this section to induce you to infringe any patents or
+other property right claims or to contest validity of any such claims; this
+section has the sole purpose of protecting the integrity of the free software
+distribution system, which is implemented by public license practices. Many
+people have made generous contributions to the wide range of software
+distributed through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing to
+distribute software through any other system and a licensee cannot impose that
+choice.
+
+This section is intended to make thoroughly clear what is believed to be a
+consequence of the rest of this License.
+
+**8.** If the distribution and/or use of the Program is restricted in certain
+countries either by patents or by copyrighted interfaces, the original copyright
+holder who places the Program under this License may add an explicit
+geographical distribution limitation excluding those countries, so that
+distribution is permitted only in or among countries not thus excluded. In such
+case, this License incorporates the limitation as if written in the body of this
+License.
+
+**9.** The Free Software Foundation may publish revised and/or new versions of
+the General Public License from time to time. Such new versions will be similar
+in spirit to the present version, but may differ in detail to address new
+problems or concerns.
+
+Each version is given a distinguishing version number. If the Program specifies
+a version number of this License which applies to it and "any later version",
+you have the option of following the terms and conditions either of that version
+or of any later version published by the Free Software Foundation. If the
+Program does not specify a version number of this License, you may choose any
+version ever published by the Free Software Foundation.
+
+**10.** If you wish to incorporate parts of the Program into other free programs
+whose distribution conditions are different, write to the author to ask for
+permission. For software which is copyrighted by the Free Software Foundation,
+write to the Free Software Foundation; we sometimes make exceptions for this.
+Our decision will be guided by the two goals of preserving the free status of
+all derivatives of our free software and of promoting the sharing and reuse of
+software generally.
+
+
+No Warranty
+-----------
+
+**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR
+THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE
+STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM
+"AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
+BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
+PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
+PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR
+INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA
+BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
+FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER
+OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
\ No newline at end of file
diff --git a/README.md b/README.md
new file mode 100755
index 0000000..3b64016
--- /dev/null
+++ b/README.md
@@ -0,0 +1,259 @@
+# Yeu Chay Bo Theme
+
+A feature packed, clean and professional Genesis child theme with built in support for Gutenberg, AMP and more.. Demo - [https://demo.seothemes.com/corporate-pro](https://demo.seothemes.com/corporate-pro)
+
+
+## Features
+
+#### Gutenberg Support
+Built in support for the new WordPress editor which allows you to utilize all of the latest features.
+
+#### AMP Ready
+Easily setup Accelerated Mobile Pages to make your website lightning fast on mobile devices.
+
+#### One Click Demo Import
+Setup your theme just like how you see it in the demo in less than 5 minutes
+
+#### Custom Colors
+Yeu Chay Bo provides custom color settings with transparency options giving you even more control over your theme's colors
+
+#### SEO Slider
+We built an entirely new plugin for this theme because all the other slider plugins weren't SEO friendly enough
+
+#### WooCommerce
+Fully integrated with the world's most popular WordPress eCommerce plugin WooCommerce
+
+#### Genesis Simple FAQ
+Easily add frequently asked questions with the Genesis Simple FAQs plugin
+
+#### Transparent Header
+Change the look of the site-header from the Customizer. Choose from either transparent or default
+
+#### Sticky Header
+Enable a sticky header that stays in the viewport on scroll from the Customizer
+
+#### Accessibility
+Accessibility friendly content that can be navigated with ease using the keyboard
+
+#### Templates & Layouts
+Custom page templates and layouts provide plenty of options for displaying your content
+
+#### Portfolio
+Showcase your projects in style using the Display Posts Shortcode
+
+
+## Recommendations
+
+* PHP > 7.0
+* WordPress > 4.8
+* Genesis Framework > 2.4
+* Node.js > 6.9
+* Gulp.js > 3.9
+
+
+## Installation
+
+1. Upload and install Genesis
+2. Upload, install and activate Yeu Chay Bo
+3. Install and activate recommended plugins
+4. *Important* Delete unwanted existing posts, pages, comments & widgets
+5. Import sample.xml from Tools > Import
+6. Import widgets.wie from Tools > Widget Importer & Exporter
+
+
+## Renaming
+
+The following instructions require the use of a text editor with search and replace functionality. You will need to perform a search and replace on all files in the theme folder. If using NPM, the theme should be renamed before running `npm install`. You do not want to edit any files in the `node_modules` directory.
+
+1. Search and replace `corporate-pro` with your theme text domain.
+2. Search and replace `corporate_` with your theme function prefix.
+3. Search and replace `Yeu Chay Bo` with your theme name.
+
+You can also use the Gulp [rename](#additional-commands) task included with the theme.
+
+
+## Customization
+
+1. Go to Appearance > Customize > Site Identity to upload a logo
+2. Go to Appearamce > Customize > Header Media to upload hero image or video
+3. Go to Appearance > Customize > Menus to create menus
+4. Go to Appearance > Customize > Static Front Page and configure to your liking
+5. Go to Appearance > Customize > Site Layout and configure to your liking
+6. Go to Genesis > Theme Settings to enable Breadcrumbs on pages
+
+
+## Widget Areas
+
+* Header Right
+* Primary Sidebar
+* After Entry
+* Before Header
+* Before Footer
+* Front page (default 9)
+* Footer (default 4)
+
+
+## Structure
+
+```shell
+theme/
+├── assets/
+│ ├── fonts/
+│ ├── images/
+│ ├── scripts/
+│ │ ├── min/
+│ │ │ ├── customize.min.js
+│ │ │ ├── menus.min.js
+│ │ │ └── theme.min.js
+│ │ ├── customize.js
+│ │ ├── menus.js
+│ │ └── theme.js
+│ └── styles/
+│ │ │ ├── customize.min.css
+│ │ │ ├── style.min.css
+│ │ │ ├── style.min.css.map
+│ │ │ └── woocommerce.min.css
+│ │ ├── _common.scss
+│ │ ├── _content.scss
+│ │ ├── _defaults.scss
+│ │ ├── _footer.scss
+│ │ ├── _header.scss
+│ │ ├── _home.scss
+│ │ ├── _layout.scss
+│ │ ├── _menus.scss
+│ │ ├── _plugins.scss
+│ │ ├── _print.scss
+│ │ ├── _reset.scss
+│ │ ├── _sidebars.scss
+│ │ ├── _utilities.scss
+│ │ ├── style.scss
+│ │ └── woocommerce.scss
+├── includes/
+│ ├── colors.php
+│ ├── customize.php
+│ ├── defaults.php
+│ ├── general.php
+│ ├── helpers.php
+│ ├── hero.php
+│ ├── plugins.php
+│ ├── rgba.php
+│ └── widgets.php
+├── languages/
+│ └── corporate-pro.pot
+├── templates/
+│ ├── page-boxed.php
+│ ├── page-builder.php
+│ ├── page-contact.php
+│ └── page-landing.php
+├── .csscomb.json
+├── .editorconfig
+├── .gitignore
+├── .jsbeautifyrc
+├── 404.php
+├── CHANGELOG.md
+├── customizer.dat
+├── front-page.php
+├── functions.php
+├── gulpfile.js
+├── LICENSE.md
+├── map.json
+├── package-lock.json
+├── package.json
+├── README.md
+├── sample.xml
+├── screenshot.png
+├── settings.json
+├── style.css
+└── widgets.wie
+```
+
+
+## Development
+
+Yeu Chay Bo uses [Gulp](http://gulpjs.com/) as a build tool and [npm](https://www.npmjs.com/) to manage front-end packages.
+
+### Install dependencies
+
+From the command line on your host machine, navigate to the theme directory then run `npm install`:
+
+```shell
+# @ themes/your-theme-name/
+$ npm install
+```
+
+You now have all the necessary dependencies to run the build process.
+
+### Build commands
+
+* `gulp styles` — Compile, autoprefix and minify Sass files.
+* `gulp scripts` — Minify javascript files.
+* `gulp images` — Compress and optimize images.
+* `gulp watch` — Compile assets when file changes are made, start Browsersync
+* `gulp` — (Default task) runs all of the above tasks.
+
+
+#### Additional commands
+
+* `gulp translate` — Scan the theme and create `corporate-pro.pot` POT file.
+* `gulp zip` — Package theme into zip file for distribution, ignoring `node_modules`.
+* `gulp bump` - Bumps version number in all files. See options in example below.
+ - `--major` version when you make incompatible API changes
+ - `--minor` version when you add functionality in a backwards-compatible manner
+ - `--patch` version when you make backwards-compatible bug fixes
+ - `--to` allows you to define a custom version number, e.g. `gulp bump --to 0.1.0`
+* `gulp rename` - Rename theme Title, Text Domain and Function Prefix.
+ - `--to` name for your theme e.g: `gulp rename --to your-theme-name`
+
+
+### Using Browsersync
+
+To use Browsersync you need to update the proxy URL in `gulpfile.js` to reflect your local development hostname.
+
+If your local development URL is `my-site.dev`, update the file to read:
+
+```javascript
+...
+ proxy: 'my-site.dev',
+...
+```
+
+By default, BrowserSync is configured to use an SSL certificate for local development. If using a Non-HTTPS local site, remove the HTTPS BrowserSync configuration and uncomment the HTTP settings.
+
+
+## Support
+
+Please visit https://seothemes.com/support/ for theme support.
+
+
+## Customizations
+
+Please visit https://seothemes.com/custom-development/ for theme customizations.
+
+
+## Authors
+
+- **Lee Anthony** - [SEO Themes](https://seothemes.com/)
+
+See also the list of [contributors](https://github.com/seothemes/corporate-pro/graphs/contributors) who participated in this project.
+
+
+## License
+
+This project is licensed under the GNU General Public License - see the LICENSE.md file for details.
+
+
+## Acknowledgments
+
+A shout out to anyone who's code was used:
+
+- Gary Jones
+- Tim Jensen
+- Craig Watson
+- Bill Erickson
+- Sridhar Katakam
+- Chinmoy Paul
+- Nathan Rice
+- Calvin Koepke
+- Jen Baumann
+- Brian Gardner
+- Robin Cornett
diff --git a/assets/fonts/.gitkeep b/assets/fonts/.gitkeep
new file mode 100755
index 0000000..e69de29
diff --git a/assets/images/arrow-dark.svg b/assets/images/arrow-dark.svg
new file mode 100755
index 0000000..bad8ca4
--- /dev/null
+++ b/assets/images/arrow-dark.svg
@@ -0,0 +1,9 @@
+
+
+
diff --git a/assets/images/arrow.png b/assets/images/arrow.png
new file mode 100755
index 0000000..dc5bf2b
Binary files /dev/null and b/assets/images/arrow.png differ
diff --git a/assets/images/arrow.svg b/assets/images/arrow.svg
new file mode 100755
index 0000000..a240e0e
--- /dev/null
+++ b/assets/images/arrow.svg
@@ -0,0 +1,9 @@
+
+
+
diff --git a/assets/images/cats.svg b/assets/images/cats.svg
new file mode 100755
index 0000000..6061fdb
--- /dev/null
+++ b/assets/images/cats.svg
@@ -0,0 +1,14 @@
+
+
+
diff --git a/assets/images/close-light.svg b/assets/images/close-light.svg
new file mode 100755
index 0000000..a9ef425
--- /dev/null
+++ b/assets/images/close-light.svg
@@ -0,0 +1,12 @@
+
+
+
diff --git a/assets/images/close.svg b/assets/images/close.svg
new file mode 100755
index 0000000..e271431
--- /dev/null
+++ b/assets/images/close.svg
@@ -0,0 +1,12 @@
+
+
+
diff --git a/assets/images/hero.jpg b/assets/images/hero.jpg
new file mode 100755
index 0000000..5eaa496
Binary files /dev/null and b/assets/images/hero.jpg differ
diff --git a/assets/images/marker.png b/assets/images/marker.png
new file mode 100755
index 0000000..f09e3d9
Binary files /dev/null and b/assets/images/marker.png differ
diff --git a/assets/images/paper-plane.svg b/assets/images/paper-plane.svg
new file mode 100755
index 0000000..9403e07
--- /dev/null
+++ b/assets/images/paper-plane.svg
@@ -0,0 +1,12 @@
+
+
+
diff --git a/assets/images/search-light.svg b/assets/images/search-light.svg
new file mode 100755
index 0000000..61a98a9
--- /dev/null
+++ b/assets/images/search-light.svg
@@ -0,0 +1,12 @@
+
+
+
diff --git a/assets/images/search.svg b/assets/images/search.svg
new file mode 100755
index 0000000..b8f620d
--- /dev/null
+++ b/assets/images/search.svg
@@ -0,0 +1,12 @@
+
+
+
diff --git a/assets/images/tags.svg b/assets/images/tags.svg
new file mode 100755
index 0000000..f0d1c3e
--- /dev/null
+++ b/assets/images/tags.svg
@@ -0,0 +1,15 @@
+
+
+
diff --git a/assets/images/transparency-grid.png b/assets/images/transparency-grid.png
new file mode 100755
index 0000000..8e7cc47
Binary files /dev/null and b/assets/images/transparency-grid.png differ
diff --git a/assets/scripts/customize.js b/assets/scripts/customize.js
new file mode 100755
index 0000000..e229b0c
--- /dev/null
+++ b/assets/scripts/customize.js
@@ -0,0 +1,300 @@
+/**
+ * Alpha Color Picker JS
+ *
+ * This file includes several helper functions and the core control JS.
+ */
+
+/**
+ * Override the stock color.js toString() method to add support for
+ * outputting RGBa or Hex.
+ */
+Color.prototype.toString = function( flag ) {
+
+ // If our no-alpha flag has been passed in, output RGBa value with 100% opacity.
+ // This is used to set the background color on the opacity slider during color changes.
+ if ( 'no-alpha' == flag ) {
+ return this.toCSS( 'rgba', '1' ).replace( /\s+/g, '' );
+ }
+
+ // If we have a proper opacity value, output RGBa.
+ if ( 1 > this._alpha ) {
+ return this.toCSS( 'rgba', this._alpha ).replace( /\s+/g, '' );
+ }
+
+ // Proceed with stock color.js hex output.
+ var hex = parseInt( this._color, 10 ).toString( 16 );
+ if ( this.error ) { return ''; }
+ if ( hex.length < 6 ) {
+ for ( var i = 6 - hex.length - 1; i >= 0; i-- ) {
+ hex = '0' + hex;
+ }
+ }
+
+ return '#' + hex;
+};
+
+/**
+ * Given an RGBa, RGB, or hex color value, return the alpha channel value.
+ */
+function acp_get_alpha_value_from_color( value ) {
+ var alphaVal;
+
+ // Remove all spaces from the passed in value to help our RGBa regex.
+ value = value.replace( / /g, '' );
+
+ if ( value.match( /rgba\(\d+\,\d+\,\d+\,([^\)]+)\)/ ) ) {
+ alphaVal = parseFloat( value.match( /rgba\(\d+\,\d+\,\d+\,([^\)]+)\)/ )[1] ).toFixed(2) * 100;
+ alphaVal = parseInt( alphaVal );
+ } else {
+ alphaVal = 100;
+ }
+
+ return alphaVal;
+}
+
+/**
+ * Force update the alpha value of the color picker object and maybe the alpha slider.
+ */
+ function acp_update_alpha_value_on_color_control( alpha, $control, $alphaSlider, update_slider ) {
+ var iris, colorPicker, color;
+
+ iris = $control.data( 'a8cIris' );
+ colorPicker = $control.data( 'wpWpColorPicker' );
+
+ // Set the alpha value on the Iris object.
+ iris._color._alpha = alpha;
+
+ // Store the new color value.
+ color = iris._color.toString();
+
+ // Set the value of the input.
+ $control.val( color );
+
+ // Update the background color of the color picker.
+ colorPicker.toggler.css({
+ 'background-color': color
+ });
+
+ // Maybe update the alpha slider itself.
+ if ( update_slider ) {
+ acp_update_alpha_value_on_alpha_slider( alpha, $alphaSlider );
+ }
+
+ // Update the color value of the color picker object.
+ $control.wpColorPicker( 'color', color );
+}
+
+/**
+ * Update the slider handle position and label.
+ */
+function acp_update_alpha_value_on_alpha_slider( alpha, $alphaSlider ) {
+ $alphaSlider.slider( 'value', alpha );
+ $alphaSlider.find( '.ui-slider-handle' ).text( alpha.toString() );
+}
+
+/**
+ * Initialization trigger.
+ */
+jQuery( document ).ready( function( $ ) {
+
+ // Loop over each control and transform it into our color picker.
+ $( '.alpha-color-control' ).each( function() {
+
+ // Scope the vars.
+ var $control, startingColor, paletteInput, showOpacity, defaultColor, palette,
+ colorPickerOptions, $container, $alphaSlider, alphaVal, sliderOptions;
+
+ // Store the control instance.
+ $control = $( this );
+
+ // Get a clean starting value for the option.
+ startingColor = $control.val().replace( /\s+/g, '' );
+
+ // Get some data off the control.
+ paletteInput = $control.attr( 'data-palette' );
+ showOpacity = $control.attr( 'data-show-opacity' );
+ defaultColor = $control.attr( 'data-default-color' );
+
+ // Process the palette.
+ if ( paletteInput.indexOf( '|' ) !== -1 ) {
+ palette = paletteInput.split( '|' );
+ } else if ( 'false' == paletteInput ) {
+ palette = false;
+ } else {
+ palette = true;
+ }
+
+ // Set up the options that we'll pass to wpColorPicker().
+ colorPickerOptions = {
+ change: function( event, ui ) {
+ var key, value, alpha, $transparency;
+
+ key = $control.attr( 'data-customize-setting-link' );
+ value = $control.wpColorPicker( 'color' );
+
+ // Set the opacity value on the slider handle when the default color button is clicked.
+ if ( defaultColor == value ) {
+ alpha = acp_get_alpha_value_from_color( value );
+ $alphaSlider.find( '.ui-slider-handle' ).text( alpha );
+ }
+
+ // Send ajax request to wp.customize to trigger the Save action.
+ wp.customize( key, function( obj ) {
+ obj.set( value );
+ });
+
+ $transparency = $container.find( '.transparency' );
+
+ // Always show the background color of the opacity slider at 100% opacity.
+ $transparency.css( 'background-color', ui.color.toString( 'no-alpha' ) );
+ },
+ palettes: palette // Use the passed in palette.
+ };
+
+ // Create the colorpicker.
+ $control.wpColorPicker( colorPickerOptions );
+
+ $container = $control.parents( '.wp-picker-container:first' );
+
+ // Insert our opacity slider.
+ $( '
' +
+ '' +
+ '' +
+ '' +
+ '' +
+ '
' ).appendTo( $container.find( '.wp-picker-holder' ) );
+
+ $alphaSlider = $container.find( '.alpha-slider' );
+
+ // If starting value is in format RGBa, grab the alpha channel.
+ alphaVal = acp_get_alpha_value_from_color( startingColor );
+
+ // Set up jQuery UI slider() options.
+ sliderOptions = {
+ create: function( event, ui ) {
+ var value = $( this ).slider( 'value' );
+
+ // Set up initial values.
+ $( this ).find( '.ui-slider-handle' ).text( value );
+ $( this ).siblings( '.transparency ').css( 'background-color', startingColor );
+ },
+ value: alphaVal,
+ range: 'max',
+ step: 1,
+ min: 0,
+ max: 100,
+ animate: 300
+ };
+
+ // Initialize jQuery UI slider with our options.
+ $alphaSlider.slider( sliderOptions );
+
+ // Maybe show the opacity on the handle.
+ if ( 'true' == showOpacity ) {
+ $alphaSlider.find( '.ui-slider-handle' ).addClass( 'show-opacity' );
+ }
+
+ // Bind event handlers for the click zones.
+ $container.find( '.min-click-zone' ).on( 'click', function() {
+ acp_update_alpha_value_on_color_control( 0, $control, $alphaSlider, true );
+ });
+ $container.find( '.max-click-zone' ).on( 'click', function() {
+ acp_update_alpha_value_on_color_control( 100, $control, $alphaSlider, true );
+ });
+
+ // Bind event handler for clicking on a palette color.
+ $container.find( '.iris-palette' ).on( 'click', function() {
+ var color, alpha;
+
+ color = $( this ).css( 'background-color' );
+ alpha = acp_get_alpha_value_from_color( color );
+
+ acp_update_alpha_value_on_alpha_slider( alpha, $alphaSlider );
+
+ // Sometimes Iris doesn't set a perfect background-color on the palette,
+ // for example rgba(20, 80, 100, 0.3) becomes rgba(20, 80, 100, 0.298039).
+ // To compensante for this we round the opacity value on RGBa colors here
+ // and save it a second time to the color picker object.
+ if ( alpha != 100 ) {
+ color = color.replace( /[^,]+(?=\))/, ( alpha / 100 ).toFixed( 2 ) );
+ }
+
+ $control.wpColorPicker( 'color', color );
+ });
+
+ // Bind event handler for clicking on the 'Clear' button.
+ $container.find( '.button.wp-picker-clear' ).on( 'click', function() {
+ var key = $control.attr( 'data-customize-setting-link' );
+
+ // The #fff color is delibrate here. This sets the color picker to white instead of the
+ // defult black, which puts the color picker in a better place to visually represent empty.
+ $control.wpColorPicker( 'color', '#ffffff' );
+
+ // Set the actual option value to empty string.
+ wp.customize( key, function( obj ) {
+ obj.set( '' );
+ });
+
+ acp_update_alpha_value_on_alpha_slider( 100, $alphaSlider );
+ });
+
+ // Bind event handler for clicking on the 'Default' button.
+ $container.find( '.button.wp-picker-default' ).on( 'click', function() {
+ var alpha = acp_get_alpha_value_from_color( defaultColor );
+
+ acp_update_alpha_value_on_alpha_slider( alpha, $alphaSlider );
+ });
+
+ // Bind event handler for typing or pasting into the input.
+ $control.on( 'input', function() {
+ var value = $( this ).val();
+ var alpha = acp_get_alpha_value_from_color( value );
+
+ acp_update_alpha_value_on_alpha_slider( alpha, $alphaSlider );
+ });
+
+ // Update all the things when the slider is interacted with.
+ $alphaSlider.slider().on( 'slide', function( event, ui ) {
+ var alpha = parseFloat( ui.value ) / 100.0;
+
+ acp_update_alpha_value_on_color_control( alpha, $control, $alphaSlider, false );
+
+ // Change value shown on slider handle.
+ $( this ).find( '.ui-slider-handle' ).text( ui.value );
+ });
+
+ });
+});
+
+/**
+ * Sortable widget areas.
+ */
+
+jQuery( document ).ready( function($) {
+
+ /* Make it sortable. */
+ $( 'ul.my-multicheck-sortable-list' ).sortable({
+ handle: '.dashicons-menu',
+ axis: 'y',
+ update: function( e, ui ){
+ $('.my-multicheck-sortable-list input').trigger( 'change' );
+ }
+ });
+
+ /* On changing the value. */
+ $( "ul.my-multicheck-sortable-list li input" ).on( 'change', function(){
+
+ /* Get the value, and convert to string. */
+ this_checkboxes_values = $( this ).parents( 'ul.my-multicheck-sortable-list' ).find( 'li input' ).map( function(){
+ var active = '0';
+ if( $(this).prop("checked") ){
+ var active = '1';
+ }
+ return this.name + ':' + active;
+ }).get().join( ',' );
+ /* Add the value to hidden input. */
+ $( this ).parents( 'ul.my-multicheck-sortable-list' ).find( 'input[type="hidden"]' ).val( this_checkboxes_values ).trigger( 'change' );
+
+ });
+
+});
\ No newline at end of file
diff --git a/assets/scripts/menus.js b/assets/scripts/menus.js
new file mode 100755
index 0000000..839f7d0
--- /dev/null
+++ b/assets/scripts/menus.js
@@ -0,0 +1,414 @@
+/**
+ * This script adds the accessibility-ready responsive menus Genesis Framework child themes.
+ *
+ * @author StudioPress
+ * @link https://github.com/copyblogger/responsive-menus
+ * @version 1.1.3
+ * @license GPL-2.0+
+ */
+
+( function ( document, $, undefined ) {
+
+ 'use strict';
+
+ var genesisMenuParams = typeof genesis_responsive_menu === 'undefined' ? '' : genesis_responsive_menu,
+ genesisMenusUnchecked = genesisMenuParams.menuClasses,
+ genesisMenus = {},
+ menusToCombine = [];
+
+ /**
+ * Validate the menus passed by the theme with what's being loaded on the page,
+ * and pass the new and accurate information to our new data.
+ * @param {genesisMenusUnchecked} Raw data from the localized script in the theme.
+ * @return {array} genesisMenus array gets populated with updated data.
+ * @return {array} menusToCombine array gets populated with relevant data.
+ */
+ $.each( genesisMenusUnchecked, function( group ) {
+
+ // Mirror our group object to populate.
+ genesisMenus[group] = [];
+
+ // Loop through each instance of the specified menu on the page.
+ $.each( this, function( key, value ) {
+
+ var menuString = value,
+ $menu = $(value);
+
+ // If there is more than one instance, append the index and update array.
+ if ( $menu.length > 1 ) {
+
+ $.each( $menu, function( key, value ) {
+
+ var newString = menuString + '-' + key;
+
+ $(this).addClass( newString.replace( '.','' ) );
+
+ genesisMenus[group].push( newString );
+
+ if ( 'combine' === group ) {
+ menusToCombine.push( newString );
+ }
+
+ });
+
+ } else if ( $menu.length == 1 ) {
+
+ genesisMenus[group].push( menuString );
+
+ if ( 'combine' === group ) {
+ menusToCombine.push( menuString );
+ }
+
+ }
+
+ });
+
+ });
+
+ // Make sure there is something to use for the 'others' array.
+ if ( typeof genesisMenus.others == 'undefined' ) {
+ genesisMenus.others = [];
+ }
+
+ // If there's only one menu on the page for combining, push it to the 'others' array and nullify our 'combine' variable.
+ if ( menusToCombine.length == 1 ) {
+ genesisMenus.others.push( menusToCombine[0] );
+ genesisMenus.combine = null;
+ menusToCombine = null;
+ }
+
+ var genesisMenu = {},
+ mainMenuButtonClass = 'menu-toggle',
+ subMenuButtonClass = 'sub-menu-toggle',
+ responsiveMenuClass = 'genesis-responsive-menu';
+
+ // Initialize.
+ genesisMenu.init = function() {
+
+ // Exit early if there are no menus to do anything.
+ if ( $( _getAllMenusArray() ).length == 0 ) {
+ return;
+ }
+
+ var menuIconClass = typeof genesisMenuParams.menuIconClass !== 'undefined' ? genesisMenuParams.menuIconClass : 'dashicons-before dashicons-menu',
+ subMenuIconClass = typeof genesisMenuParams.subMenuIconClass !== 'undefined' ? genesisMenuParams.subMenuIconClass : 'dashicons-before dashicons-arrow-down-alt2',
+ toggleButtons = {
+ menu : $( '', {
+ 'class' : mainMenuButtonClass,
+ 'aria-expanded' : false,
+ 'aria-pressed' : false
+ } )
+ .append( genesisMenuParams.mainMenu )
+ .append( $( '' ) ),
+ submenu : $( '', {
+ 'class' : subMenuButtonClass,
+ 'aria-expanded' : false,
+ 'aria-pressed' : false
+ } )
+ .append( $( '', {
+ 'class' : 'screen-reader-text',
+ 'text' : genesisMenuParams.subMenu
+ } ) )
+ };
+
+ // Add the responsive menu class to the active menus.
+ _addResponsiveMenuClass();
+
+ // Add the main nav button to the primary menu, or exit the plugin.
+ _addMenuButtons( toggleButtons );
+
+ // Setup additional classes.
+ $( '.' + mainMenuButtonClass ).addClass( menuIconClass );
+ $( '.' + subMenuButtonClass ).addClass( subMenuIconClass );
+ $( '.' + mainMenuButtonClass ).on( 'click.genesisMenu-mainbutton', _mainmenuToggle ).each( _addClassID );
+ $( '.' + subMenuButtonClass ).on( 'click.genesisMenu-subbutton', _submenuToggle );
+ $( window ).on( 'resize.genesisMenu', _doResize ).triggerHandler( 'resize.genesisMenu' );
+ };
+
+ /**
+ * Add menu toggle button to appropriate menus.
+ * @param {toggleButtons} Object of menu buttons to use for toggles.
+ */
+ function _addMenuButtons( toggleButtons ) {
+
+ // Apply sub menu toggle to each sub-menu found in the menuList.
+ $( _getMenuSelectorString( genesisMenus ) ).find( '.sub-menu' ).before( toggleButtons.submenu );
+
+
+ if ( menusToCombine !== null ) {
+
+ var menusToToggle = genesisMenus.others.concat( menusToCombine[0] );
+
+ // Only add menu button the primary menu and navs NOT in the combine variable.
+ $( _getMenuSelectorString( menusToToggle ) ).before( toggleButtons.menu );
+
+ } else {
+
+ // Apply the main menu toggle to all menus in the list.
+ $( _getMenuSelectorString( genesisMenus.others ) ).before( toggleButtons.menu );
+
+ }
+
+ }
+
+ /**
+ * Add the responsive menu class.
+ */
+ function _addResponsiveMenuClass() {
+ $( _getMenuSelectorString( genesisMenus ) ).addClass( responsiveMenuClass );
+ }
+
+ /**
+ * Execute our responsive menu functions on window resizing.
+ */
+ function _doResize() {
+ var buttons = $( 'button[id^="genesis-mobile-"]' ).attr( 'id' );
+ if ( typeof buttons === 'undefined' ) {
+ return;
+ }
+ _maybeClose( buttons );
+ _superfishToggle( buttons );
+ _changeSkipLink( buttons );
+ _combineMenus( buttons );
+ }
+
+ /**
+ * Add the nav- class of the related navigation menu as
+ * an ID to associated button (helps target specific buttons outside of context).
+ */
+ function _addClassID() {
+ var $this = $( this ),
+ nav = $this.next( 'nav' ),
+ id = 'class';
+
+ $this.attr( 'id', 'genesis-mobile-' + $( nav ).attr( id ).match( /nav-\w*\b/ ) );
+ }
+
+ /**
+ * Combine our menus if the mobile menu is visible.
+ * @params buttons
+ */
+ function _combineMenus( buttons ){
+
+ // Exit early if there are no menus to combine.
+ if ( menusToCombine == null ) {
+ return;
+ }
+
+ // Split up the menus to combine based on order of appearance in the array.
+ var primaryMenu = menusToCombine[0],
+ combinedMenus = $( menusToCombine ).filter( function(index) { if ( index > 0 ) { return index; } });
+
+ // If the responsive menu is active, append items in 'combinedMenus' object to the 'primaryMenu' object.
+ if ( 'none' !== _getDisplayValue( buttons ) ) {
+
+ $.each( combinedMenus, function( key, value ) {
+ $(value).find( '.menu > li' ).addClass( 'moved-item-' + value.replace( '.','' ) ).appendTo( primaryMenu + ' ul.genesis-nav-menu' );
+ });
+ $( _getMenuSelectorString( combinedMenus ) ).hide();
+
+ } else {
+
+ $( _getMenuSelectorString( combinedMenus ) ).show();
+ $.each( combinedMenus, function( key, value ) {
+ $( '.moved-item-' + value.replace( '.','' ) ).appendTo( value + ' ul.genesis-nav-menu' ).removeClass( 'moved-item-' + value.replace( '.','' ) );
+ });
+
+ }
+
+ }
+
+ /**
+ * Action to happen when the main menu button is clicked.
+ */
+ function _mainmenuToggle() {
+ var $this = $( this );
+ _toggleAria( $this, 'aria-pressed' );
+ _toggleAria( $this, 'aria-expanded' );
+ $this.toggleClass( 'activated' );
+ //$this.next( 'nav' ).slideToggle( 'fast' );
+ $this.next( 'nav' ).toggleClass( 'activated' );
+ }
+
+ /**
+ * Action for submenu toggles.
+ */
+ function _submenuToggle() {
+
+ var $this = $( this ),
+ others = $this.closest( '.menu-item' ).siblings();
+ _toggleAria( $this, 'aria-pressed' );
+ _toggleAria( $this, 'aria-expanded' );
+ $this.toggleClass( 'activated' );
+ $this.next( '.sub-menu' ).slideToggle( 'fast' );
+
+ others.find( '.' + subMenuButtonClass ).removeClass( 'activated' ).attr( 'aria-pressed', 'false' );
+ others.find( '.sub-menu' ).slideUp( 'fast' );
+
+ }
+
+ /**
+ * Activate/deactivate superfish.
+ * @params buttons
+ */
+ function _superfishToggle( buttons ) {
+ var _superfish = $( '.' + responsiveMenuClass + ' .js-superfish' ),
+ $args = 'destroy';
+ if ( typeof _superfish.superfish !== 'function' ) {
+ return;
+ }
+ if ( 'none' === _getDisplayValue( buttons ) ) {
+ $args = {
+ 'delay': 100,
+ 'animation': {'opacity': 'show', 'height': 'show'},
+ 'dropShadows': false,
+ 'speed': 'fast'
+ };
+ }
+ _superfish.superfish( $args );
+ }
+
+ /**
+ * Modify skip link to match mobile buttons.
+ * @param buttons
+ */
+ function _changeSkipLink( buttons ) {
+
+ // Start with an empty array.
+ var menuToggleList = _getAllMenusArray();
+
+ // Exit out if there are no menu items to update.
+ if ( ! $( menuToggleList ).length > 0 ) {
+ return;
+ }
+
+ $.each( menuToggleList, function ( key, value ) {
+
+ var newValue = value.replace( '.', '' ),
+ startLink = 'genesis-' + newValue,
+ endLink = 'genesis-mobile-' + newValue;
+
+ if ( 'none' == _getDisplayValue( buttons ) ) {
+ startLink = 'genesis-mobile-' + newValue;
+ endLink = 'genesis-' + newValue;
+ }
+
+ var $item = $( '.genesis-skip-link a[href="#' + startLink + '"]' );
+
+ if ( menusToCombine !== null && value !== menusToCombine[0] ) {
+ $item.toggleClass( 'skip-link-hidden' );
+ }
+
+ if ( $item.length > 0 ) {
+ var link = $item.attr( 'href' );
+ link = link.replace( startLink, endLink );
+
+ $item.attr( 'href', link );
+ } else {
+ return;
+ }
+
+ });
+
+ }
+
+ /**
+ * Close all the menu toggles if buttons are hidden.
+ * @param buttons
+ */
+ function _maybeClose( buttons ) {
+ if ( 'none' !== _getDisplayValue( buttons ) ) {
+ return true;
+ }
+
+ $( '.' + mainMenuButtonClass + ', .' + responsiveMenuClass + ' .sub-menu-toggle' )
+ .removeClass( 'activated' )
+ .attr( 'aria-expanded', false )
+ .attr( 'aria-pressed', false );
+
+ $( '.' + responsiveMenuClass + ', .' + responsiveMenuClass + ' .sub-menu' )
+ .attr( 'style', '' );
+ }
+
+ /**
+ * Generic function to get the display value of an element.
+ * @param {id} $id ID to check
+ * @return {string} CSS value of display property
+ */
+ function _getDisplayValue( $id ) {
+ var element = document.getElementById( $id ),
+ style = window.getComputedStyle( element );
+ return style.getPropertyValue( 'display' );
+ }
+
+ /**
+ * Toggle aria attributes.
+ * @param {button} $this passed through
+ * @param {aria-xx} attribute aria attribute to toggle
+ * @return {bool} from _ariaReturn
+ */
+ function _toggleAria( $this, attribute ) {
+ $this.attr( attribute, function( index, value ) {
+ return 'false' === value;
+ });
+ }
+
+ /**
+ * Helper function to return a comma separated string of menu selectors.
+ * @param {itemArray} Array of menu items to loop through.
+ * @param {ignoreSecondary} boolean of whether to ignore the 'secondary' menu item.
+ * @return {string} Comma-separated string.
+ */
+ function _getMenuSelectorString( itemArray ) {
+
+ var itemString = $.map( itemArray, function( value, key ) {
+ return value;
+ });
+
+ return itemString.join( ',' );
+
+ }
+
+ /**
+ * Helper function to return a group array of all the menus in
+ * both the 'others' and 'combine' arrays.
+ * @return {array} Array of all menu items as class selectors.
+ */
+ function _getAllMenusArray() {
+
+ // Start with an empty array.
+ var menuList = [];
+
+ // If there are menus in the 'menusToCombine' array, add them to 'menuList'.
+ if ( menusToCombine !== null ) {
+
+ $.each( menusToCombine, function( key, value ) {
+ menuList.push( value.valueOf() );
+ });
+
+ }
+
+ // Add menus in the 'others' array to 'menuList'.
+ $.each( genesisMenus.others, function( key, value ) {
+ menuList.push( value.valueOf() );
+ });
+
+ if ( menuList.length > 0 ) {
+ return menuList;
+ } else {
+ return null;
+ }
+
+ }
+
+ $(document).ready(function () {
+
+ if ( _getAllMenusArray() !== null ) {
+
+ genesisMenu.init();
+
+ }
+
+ });
+
+})( document, jQuery );
\ No newline at end of file
diff --git a/assets/scripts/min/customize.min.js b/assets/scripts/min/customize.min.js
new file mode 100755
index 0000000..cd54577
--- /dev/null
+++ b/assets/scripts/min/customize.min.js
@@ -0,0 +1 @@
+function acp_get_alpha_value_from_color(a){var t;return(a=a.replace(/ /g,"")).match(/rgba\(\d+\,\d+\,\d+\,([^\)]+)\)/)?(t=100*parseFloat(a.match(/rgba\(\d+\,\d+\,\d+\,([^\)]+)\)/)[1]).toFixed(2),t=parseInt(t)):t=100,t}function acp_update_alpha_value_on_color_control(a,t,e,l){var o,i,r;o=t.data("a8cIris"),i=t.data("wpWpColorPicker"),o._color._alpha=a,r=o._color.toString(),t.val(r),i.toggler.css({"background-color":r}),l&&acp_update_alpha_value_on_alpha_slider(a,e),t.wpColorPicker("color",r)}function acp_update_alpha_value_on_alpha_slider(a,t){t.slider("value",a),t.find(".ui-slider-handle").text(a.toString())}Color.prototype.toString=function(a){if("no-alpha"==a)return this.toCSS("rgba","1").replace(/\s+/g,"");if(1>this._alpha)return this.toCSS("rgba",this._alpha).replace(/\s+/g,"");var t=parseInt(this._color,10).toString(16);if(this.error)return"";if(t.length<6)for(var e=6-t.length-1;e>=0;e--)t="0"+t;return"#"+t},jQuery(document).ready(function(a){a(".alpha-color-control").each(function(){var t,e,l,o,i,r,c,n,p;t=a(this),e=t.val().replace(/\s+/g,""),l=t.attr("data-palette"),o=t.attr("data-show-opacity"),i=t.attr("data-default-color"),r={change:function(a,e){var l,o,r;l=t.attr("data-customize-setting-link"),o=t.wpColorPicker("color"),i==o&&(r=acp_get_alpha_value_from_color(o),n.find(".ui-slider-handle").text(r)),wp.customize(l,function(a){a.set(o)}),c.find(".transparency").css("background-color",e.color.toString("no-alpha"))},palettes:-1!==l.indexOf("|")?l.split("|"):"false"!=l},t.wpColorPicker(r),c=t.parents(".wp-picker-container:first"),a('
',
+ 'context' => 'hero-section',
+ ) );
+
+}
diff --git a/includes/plugins.php b/includes/plugins.php
new file mode 100755
index 0000000..28f555d
--- /dev/null
+++ b/includes/plugins.php
@@ -0,0 +1,3897 @@
+ 'Display Posts Shortcode',
+ 'slug' => 'display-posts-shortcode',
+ 'required' => false,
+ );
+
+ $plugins[] = array(
+ 'name' => 'Genesis eNews Extended',
+ 'slug' => 'genesis-enews-extended',
+ 'required' => false,
+ );
+
+ $plugins[] = array(
+ 'name' => 'Genesis Portfolio Pro',
+ 'slug' => 'genesis-portfolio-pro',
+ 'required' => false,
+ );
+
+ $plugins[] = array(
+ 'name' => 'Genesis Simple Share',
+ 'slug' => 'genesis-simple-share',
+ 'required' => false,
+ );
+
+ $plugins[] = array(
+ 'name' => 'Genesis Simple FAQ',
+ 'slug' => 'genesis-simple-faq',
+ 'required' => false,
+ );
+
+ $plugins[] = array(
+ 'name' => 'Genesis Testimonial Slider',
+ 'slug' => 'wpstudio-testimonial-slider',
+ 'required' => false,
+ );
+
+ $plugins[] = array(
+ 'name' => 'Genesis Widget Column Classes',
+ 'slug' => 'genesis-widget-column-classes',
+ 'required' => false,
+ );
+
+ $plugins[] = array(
+ 'name' => 'Google Map',
+ 'slug' => 'ank-google-map',
+ 'required' => false,
+ );
+
+ $plugins[] = array(
+ 'name' => 'Icon Widget',
+ 'slug' => 'icon-widget',
+ 'required' => false,
+ );
+
+ $plugins[] = array(
+ 'name' => 'One Click Demo Import',
+ 'slug' => 'one-click-demo-import',
+ 'required' => false,
+ );
+
+ $plugins[] = array(
+ 'name' => 'SEO Slider',
+ 'slug' => 'seo-slider',
+ 'required' => false,
+ );
+
+ $plugins[] = array(
+ 'name' => 'Simple Social Icons',
+ 'slug' => 'simple-social-icons',
+ 'required' => false,
+ );
+
+ $plugins[] = array(
+ 'name' => 'WP Featherlight',
+ 'slug' => 'wp-featherlight',
+ 'required' => false,
+ );
+
+ // Check if WooCommerce is installed.
+ if ( class_exists( 'WooCommerce' ) ) {
+
+ $plugins[] = array(
+ 'name' => 'Genesis Connect WooCommerce',
+ 'slug' => 'genesis-connect-woocommerce',
+ 'required' => true,
+ );
+
+ }
+
+ /*
+ * Array of configuration settings. Amend each line as needed.
+ *
+ * TGMPA will start providing localized text strings soon. If you already have translations of our standard
+ * strings available, please help us make TGMPA even better by giving us access to these translations or by
+ * sending in a pull-request with .po file(s) with the translations.
+ *
+ * Only uncomment the strings in the config array if you want to customize the strings.
+ */
+ $config = array(
+ 'id' => 'yeuchaybo', // Unique ID for hashing notices for multiple instances of TGMPA.
+ 'default_path' => '', // Default absolute path to bundled plugins.
+ 'menu' => 'tgmpa-install-plugins', // Menu slug.
+ 'has_notices' => true, // Show admin notices or not.
+ 'dismissable' => true, // If false, a user cannot dismiss the nag message.
+ 'dismiss_msg' => '', // If 'dismissable' is false, this message will be output at top of nag.
+ 'is_automatic' => false, // Automatically activate plugins after installation or not.
+ 'message' => '', // Message to output right before the plugins table.
+
+ );
+
+ tgmpa( $plugins, $config );
+}
+
+/**
+ * Plugin Activation
+ *
+ * Copyright 2011 Thomas Griffin (thomasgriffinmedia.com)
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License, version 2, as
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+*/
+
+if ( ! class_exists( 'Plugin_Activation' ) ) {
+
+ /**
+ * Automatic plugin installation and activation library.
+ *
+ * Creates a way to automatically install and activate plugins from within themes.
+ * The plugins can be either bundled, downloaded from the WordPress
+ * Plugin Repository or downloaded from another external source.
+ *
+ * @since 1.0.0
+ *
+ * @package TGM-Plugin-Activation
+ * @author Thomas Griffin
+ * @author Gary Jones
+ */
+ class Plugin_Activation {
+ /**
+ * TGMPA version number.
+ *
+ * @since 2.5.0
+ *
+ * @const string Version number.
+ */
+ const TGMPA_VERSION = '2.6.1';
+
+ /**
+ * Regular expression to test if a URL is a WP plugin repo URL.
+ *
+ * @const string Regex.
+ *
+ * @since 2.5.0
+ */
+ const WP_REPO_REGEX = '|^http[s]?://wordpress\.org/(?:extend/)?plugins/|';
+
+ /**
+ * Arbitrary regular expression to test if a string starts with a URL.
+ *
+ * @const string Regex.
+ *
+ * @since 2.5.0
+ */
+ const IS_URL_REGEX = '|^http[s]?://|';
+
+ /**
+ * Holds a copy of itself, so it can be referenced by the class name.
+ *
+ * @since 1.0.0
+ *
+ * @var Plugin_Activation
+ */
+ public static $instance;
+
+ /**
+ * Holds arrays of plugin details.
+ *
+ * @since 1.0.0
+ * @since 2.5.0 the array has the plugin slug as an associative key.
+ *
+ * @var array
+ */
+ public $plugins = array();
+
+ /**
+ * Holds arrays of plugin names to use to sort the plugins array.
+ *
+ * @since 2.5.0
+ *
+ * @var array
+ */
+ protected $sort_order = array();
+
+ /**
+ * Whether any plugins have the 'force_activation' setting set to true.
+ *
+ * @since 2.5.0
+ *
+ * @var bool
+ */
+ protected $has_forced_activation = false;
+
+ /**
+ * Whether any plugins have the 'force_deactivation' setting set to true.
+ *
+ * @since 2.5.0
+ *
+ * @var bool
+ */
+ protected $has_forced_deactivation = false;
+
+ /**
+ * Name of the unique ID to hash notices.
+ *
+ * @since 2.4.0
+ *
+ * @var string
+ */
+ public $id = 'tgmpa';
+
+ /**
+ * Name of the query-string argument for the admin page.
+ *
+ * @since 1.0.0
+ *
+ * @var string
+ */
+ protected $menu = 'tgmpa-install-plugins';
+
+ /**
+ * Parent menu file slug.
+ *
+ * @since 2.5.0
+ *
+ * @var string
+ */
+ public $parent_slug = 'themes.php';
+
+ /**
+ * Capability needed to view the plugin installation menu item.
+ *
+ * @since 2.5.0
+ *
+ * @var string
+ */
+ public $capability = 'edit_theme_options';
+
+ /**
+ * Default absolute path to folder containing bundled plugin zip files.
+ *
+ * @since 2.0.0
+ *
+ * @var string Absolute path prefix to zip file location for bundled plugins. Default is empty string.
+ */
+ public $default_path = '';
+
+ /**
+ * Flag to show admin notices or not.
+ *
+ * @since 2.1.0
+ *
+ * @var boolean
+ */
+ public $has_notices = true;
+
+ /**
+ * Flag to determine if the user can dismiss the notice nag.
+ *
+ * @since 2.4.0
+ *
+ * @var boolean
+ */
+ public $dismissable = true;
+
+ /**
+ * Message to be output above nag notice if dismissable is false.
+ *
+ * @since 2.4.0
+ *
+ * @var string
+ */
+ public $dismiss_msg = '';
+
+ /**
+ * Flag to set automatic activation of plugins. Off by default.
+ *
+ * @since 2.2.0
+ *
+ * @var boolean
+ */
+ public $is_automatic = false;
+
+ /**
+ * Optional message to display before the plugins table.
+ *
+ * @since 2.2.0
+ *
+ * @var string Message filtered by wp_kses_post(). Default is empty string.
+ */
+ public $message = '';
+
+ /**
+ * Holds configurable array of strings.
+ *
+ * Default values are added in the constructor.
+ *
+ * @since 2.0.0
+ *
+ * @var array
+ */
+ public $strings = array();
+
+ /**
+ * Holds the version of WordPress.
+ *
+ * @since 2.4.0
+ *
+ * @var int
+ */
+ public $wp_version;
+
+ /**
+ * Holds the hook name for the admin page.
+ *
+ * @since 2.5.0
+ *
+ * @var string
+ */
+ public $page_hook;
+
+ /**
+ * Adds a reference of this object to $instance, populates default strings,
+ * does the tgmpa_init action hook, and hooks in the interactions to init.
+ *
+ * {@internal This method should be `protected`, but as too many TGMPA implementations
+ * haven't upgraded beyond v2.3.6 yet, this gives backward compatibility issues.
+ * Reverted back to public for the time being.}}
+ *
+ * @since 1.0.0
+ *
+ * @see Plugin_Activation::init()
+ */
+ public function __construct() {
+ // Set the current WordPress version.
+ $this->wp_version = $GLOBALS['wp_version'];
+
+ // Announce that the class is ready, and pass the object (for advanced use).
+ do_action_ref_array( 'tgmpa_init', array( $this ) );
+
+ // When the rest of WP has loaded, kick-start the rest of the class.
+ add_action( 'init', array( $this, 'init' ) );
+ }
+
+ /**
+ * Magic method to (not) set protected properties from outside of this class.
+ *
+ * {@internal hackedihack... There is a serious bug in v2.3.2 - 2.3.6 where the `menu` property
+ * is being assigned rather than tested in a conditional, effectively rendering it useless.
+ * This 'hack' prevents this from happening.}}
+ *
+ * @see https://github.com/TGMPA/TGM-Plugin-Activation/blob/2.3.6/tgm-plugin-activation/class-tgm-plugin-activation.php#L1593
+ *
+ * @since 2.5.2
+ *
+ * @param string $name Name of an inaccessible property.
+ * @param mixed $value Value to assign to the property.
+ * @return void Silently fail to set the property when this is tried from outside of this class context.
+ * (Inside this class context, the __set() method if not used as there is direct access.)
+ */
+ public function __set( $name, $value ) { }
+
+ /**
+ * Magic method to get the value of a protected property outside of this class context.
+ *
+ * @since 2.5.2
+ *
+ * @param string $name Name of an inaccessible property.
+ * @return mixed The property value.
+ */
+ public function __get( $name ) {
+ return $this->{$name};
+ }
+
+ /**
+ * Initialise the interactions between this class and WordPress.
+ *
+ * Hooks in three new methods for the class: admin_menu, notices and styles.
+ *
+ * @since 2.0.0
+ *
+ * @see Plugin_Activation::admin_menu()
+ * @see Plugin_Activation::notices()
+ * @see Plugin_Activation::styles()
+ */
+ public function init() {
+ /**
+ * By default TGMPA only loads on the WP back-end and not in an Ajax call. Using this filter
+ * you can overrule that behaviour.
+ *
+ * @since 2.5.0
+ *
+ * @param bool $load Whether or not TGMPA should load.
+ * Defaults to the return of `is_admin() && ! defined( 'DOING_AJAX' )`.
+ */
+ if ( true !== apply_filters( 'tgmpa_load', ( is_admin() && ! defined( 'DOING_AJAX' ) ) ) ) {
+ return;
+ }
+
+ // Load class strings.
+ $this->strings = array(
+ 'page_title' => __( 'Install Required Plugins', 'yeuchaybo' ),
+ 'menu_title' => __( 'Install Plugins', 'yeuchaybo' ),
+ /* translators: %s: plugin name. */
+ 'installing' => __( 'Installing Plugin: %s', 'yeuchaybo' ),
+ /* translators: %s: plugin name. */
+ 'updating' => __( 'Updating Plugin: %s', 'yeuchaybo' ),
+ 'oops' => __( 'Something went wrong with the plugin API.', 'yeuchaybo' ),
+ 'notice_can_install_required' => _n_noop(
+ /* translators: 1: plugin name(s). */
+ 'This theme requires the following plugin: %1$s.',
+ 'This theme requires the following plugins: %1$s.',
+ 'yeuchaybo'
+ ),
+ 'notice_can_install_recommended' => _n_noop(
+ /* translators: 1: plugin name(s). */
+ 'This theme recommends the following plugin: %1$s.',
+ 'This theme recommends the following plugins: %1$s.',
+ 'yeuchaybo'
+ ),
+ 'notice_ask_to_update' => _n_noop(
+ /* translators: 1: plugin name(s). */
+ 'The following plugin needs to be updated to its latest version to ensure maximum compatibility with this theme: %1$s.',
+ 'The following plugins need to be updated to their latest version to ensure maximum compatibility with this theme: %1$s.',
+ 'yeuchaybo'
+ ),
+ 'notice_ask_to_update_maybe' => _n_noop(
+ /* translators: 1: plugin name(s). */
+ 'There is an update available for: %1$s.',
+ 'There are updates available for the following plugins: %1$s.',
+ 'yeuchaybo'
+ ),
+ 'notice_can_activate_required' => _n_noop(
+ /* translators: 1: plugin name(s). */
+ 'The following required plugin is currently inactive: %1$s.',
+ 'The following required plugins are currently inactive: %1$s.',
+ 'yeuchaybo'
+ ),
+ 'notice_can_activate_recommended' => _n_noop(
+ /* translators: 1: plugin name(s). */
+ 'The following recommended plugin is currently inactive: %1$s.',
+ 'The following recommended plugins are currently inactive: %1$s.',
+ 'yeuchaybo'
+ ),
+ 'install_link' => _n_noop(
+ 'Begin installing plugin',
+ 'Begin installing plugins',
+ 'yeuchaybo'
+ ),
+ 'update_link' => _n_noop(
+ 'Begin updating plugin',
+ 'Begin updating plugins',
+ 'yeuchaybo'
+ ),
+ 'activate_link' => _n_noop(
+ 'Begin activating plugin',
+ 'Begin activating plugins',
+ 'yeuchaybo'
+ ),
+ 'return' => __( 'Return to Required Plugins Installer', 'yeuchaybo' ),
+ 'dashboard' => __( 'Return to the Dashboard', 'yeuchaybo' ),
+ 'plugin_activated' => __( 'Plugin activated successfully.', 'yeuchaybo' ),
+ 'activated_successfully' => __( 'The following plugin was activated successfully:', 'yeuchaybo' ),
+ /* translators: 1: plugin name. */
+ 'plugin_already_active' => __( 'No action taken. Plugin %1$s was already active.', 'yeuchaybo' ),
+ /* translators: 1: plugin name. */
+ 'plugin_needs_higher_version' => __( 'Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.', 'yeuchaybo' ),
+ /* translators: 1: dashboard link. */
+ 'complete' => __( 'All plugins installed and activated successfully. %1$s', 'yeuchaybo' ),
+ 'dismiss' => __( 'Dismiss this notice', 'yeuchaybo' ),
+ 'notice_cannot_install_activate' => __( 'There are one or more required or recommended plugins to install, update or activate.', 'yeuchaybo' ),
+ 'contact_admin' => __( 'Please contact the administrator of this site for help.', 'yeuchaybo' ),
+ );
+
+ do_action( 'tgmpa_register' );
+
+ /* After this point, the plugins should be registered and the configuration set. */
+
+ // Proceed only if we have plugins to handle.
+ if ( empty( $this->plugins ) || ! is_array( $this->plugins ) ) {
+ return;
+ }
+
+ // Set up the menu and notices if we still have outstanding actions.
+ if ( true !== $this->is_tgmpa_complete() ) {
+ // Sort the plugins.
+ array_multisort( $this->sort_order, SORT_ASC, $this->plugins );
+
+ add_action( 'admin_menu', array( $this, 'admin_menu' ) );
+ add_action( 'admin_head', array( $this, 'dismiss' ) );
+
+ // Prevent the normal links from showing underneath a single install/update page.
+ add_filter( 'install_plugin_complete_actions', array( $this, 'actions' ) );
+ add_filter( 'update_plugin_complete_actions', array( $this, 'actions' ) );
+
+ if ( $this->has_notices ) {
+ add_action( 'admin_notices', array( $this, 'notices' ) );
+ add_action( 'admin_init', array( $this, 'admin_init' ), 1 );
+ add_action( 'admin_enqueue_scripts', array( $this, 'thickbox' ) );
+ }
+ }
+
+ // If needed, filter plugin action links.
+ add_action( 'load-plugins.php', array( $this, 'add_plugin_action_link_filters' ), 1 );
+
+ // Make sure things get reset on switch theme.
+ add_action( 'switch_theme', array( $this, 'flush_plugins_cache' ) );
+
+ if ( $this->has_notices ) {
+ add_action( 'switch_theme', array( $this, 'update_dismiss' ) );
+ }
+
+ // Setup the force activation hook.
+ if ( true === $this->has_forced_activation ) {
+ add_action( 'admin_init', array( $this, 'force_activation' ) );
+ }
+
+ // Setup the force deactivation hook.
+ if ( true === $this->has_forced_deactivation ) {
+ add_action( 'switch_theme', array( $this, 'force_deactivation' ) );
+ }
+ }
+
+
+
+
+
+
+
+ /**
+ * Hook in plugin action link filters for the WP native plugins page.
+ *
+ * - Prevent activation of plugins which don't meet the minimum version requirements.
+ * - Prevent deactivation of force-activated plugins.
+ * - Add update notice if update available.
+ *
+ * @since 2.5.0
+ */
+ public function add_plugin_action_link_filters() {
+ foreach ( $this->plugins as $slug => $plugin ) {
+ if ( false === $this->can_plugin_activate( $slug ) ) {
+ add_filter( 'plugin_action_links_' . $plugin['file_path'], array( $this, 'filter_plugin_action_links_activate' ), 20 );
+ }
+
+ if ( true === $plugin['force_activation'] ) {
+ add_filter( 'plugin_action_links_' . $plugin['file_path'], array( $this, 'filter_plugin_action_links_deactivate' ), 20 );
+ }
+
+ if ( false !== $this->does_plugin_require_update( $slug ) ) {
+ add_filter( 'plugin_action_links_' . $plugin['file_path'], array( $this, 'filter_plugin_action_links_update' ), 20 );
+ }
+ }
+ }
+
+ /**
+ * Remove the 'Activate' link on the WP native plugins page if the plugin does not meet the
+ * minimum version requirements.
+ *
+ * @since 2.5.0
+ *
+ * @param array $actions Action links.
+ * @return array
+ */
+ public function filter_plugin_action_links_activate( $actions ) {
+ unset( $actions['activate'] );
+
+ return $actions;
+ }
+
+ /**
+ * Remove the 'Deactivate' link on the WP native plugins page if the plugin has been set to force activate.
+ *
+ * @since 2.5.0
+ *
+ * @param array $actions Action links.
+ * @return array
+ */
+ public function filter_plugin_action_links_deactivate( $actions ) {
+ unset( $actions['deactivate'] );
+
+ return $actions;
+ }
+
+ /**
+ * Add a 'Requires update' link on the WP native plugins page if the plugin does not meet the
+ * minimum version requirements.
+ *
+ * @since 2.5.0
+ *
+ * @param array $actions Action links.
+ * @return array
+ */
+ public function filter_plugin_action_links_update( $actions ) {
+ $actions['update'] = sprintf(
+ '%3$s',
+ esc_url( $this->get_tgmpa_status_url( 'update' ) ),
+ esc_attr__( 'This plugin needs to be updated to be compatible with your theme.', 'yeuchaybo' ),
+ esc_html__( 'Update Required', 'yeuchaybo' )
+ );
+
+ return $actions;
+ }
+
+ /**
+ * Handles calls to show plugin information via links in the notices.
+ *
+ * We get the links in the admin notices to point to the TGMPA page, rather
+ * than the typical plugin-install.php file, so we can prepare everything
+ * beforehand.
+ *
+ * WP does not make it easy to show the plugin information in the thickbox -
+ * here we have to require a file that includes a function that does the
+ * main work of displaying it, enqueue some styles, set up some globals and
+ * finally call that function before exiting.
+ *
+ * Down right easy once you know how...
+ *
+ * Returns early if not the TGMPA page.
+ *
+ * @since 2.1.0
+ *
+ * @global string $tab Used as iframe div class names, helps with styling
+ * @global string $body_id Used as the iframe body ID, helps with styling
+ *
+ * @return null Returns early if not the TGMPA page.
+ */
+ public function admin_init() {
+ if ( ! $this->is_tgmpa_page() ) {
+ return;
+ }
+
+ if ( isset( $_REQUEST['tab'] ) && 'plugin-information' === $_REQUEST['tab'] ) {
+ // Needed for install_plugin_information().
+ require_once ABSPATH . 'wp-admin/includes/plugin-install.php';
+
+ wp_enqueue_style( 'plugin-install' );
+
+ global $tab, $body_id;
+ $body_id = 'plugin-information';
+ // @codingStandardsIgnoreStart
+ $tab = 'plugin-information';
+ // @codingStandardsIgnoreEnd
+
+ install_plugin_information();
+
+ exit;
+ }
+ }
+
+ /**
+ * Enqueue thickbox scripts/styles for plugin info.
+ *
+ * Thickbox is not automatically included on all admin pages, so we must
+ * manually enqueue it for those pages.
+ *
+ * Thickbox is only loaded if the user has not dismissed the admin
+ * notice or if there are any plugins left to install and activate.
+ *
+ * @since 2.1.0
+ */
+ public function thickbox() {
+ if ( ! get_user_meta( get_current_user_id(), 'tgmpa_dismissed_notice_' . $this->id, true ) ) {
+ add_thickbox();
+ }
+ }
+
+ /**
+ * Adds submenu page if there are plugin actions to take.
+ *
+ * This method adds the submenu page letting users know that a required
+ * plugin needs to be installed.
+ *
+ * This page disappears once the plugin has been installed and activated.
+ *
+ * @since 1.0.0
+ *
+ * @see Plugin_Activation::init()
+ * @see Plugin_Activation::install_plugins_page()
+ *
+ * @return null Return early if user lacks capability to install a plugin.
+ */
+ public function admin_menu() {
+ // Make sure privileges are correct to see the page.
+ if ( ! current_user_can( 'install_plugins' ) ) {
+ return;
+ }
+
+ $args = apply_filters(
+ 'tgmpa_admin_menu_args',
+ array(
+ 'parent_slug' => $this->parent_slug, // Parent Menu slug.
+ 'page_title' => $this->strings['page_title'], // Page title.
+ 'menu_title' => $this->strings['menu_title'], // Menu title.
+ 'capability' => $this->capability, // Capability.
+ 'menu_slug' => $this->menu, // Menu slug.
+ 'function' => array( $this, 'install_plugins_page' ), // Callback.
+ )
+ );
+
+ $this->add_admin_menu( $args );
+ }
+
+ /**
+ * Add the menu item.
+ *
+ * {@internal IMPORTANT! If this function changes, review the regex in the custom TGMPA
+ * generator on the website.}}
+ *
+ * @since 2.5.0
+ *
+ * @param array $args Menu item configuration.
+ */
+ protected function add_admin_menu( array $args ) {
+ $this->page_hook = add_theme_page( $args['page_title'], $args['menu_title'], $args['capability'], $args['menu_slug'], $args['function'] );
+ }
+
+ /**
+ * Echoes plugin installation form.
+ *
+ * This method is the callback for the admin_menu method function.
+ * This displays the admin page and form area where the user can select to install and activate the plugin.
+ * Aborts early if we're processing a plugin installation action.
+ *
+ * @since 1.0.0
+ *
+ * @return null Aborts early if we're processing a plugin installation action.
+ */
+ public function install_plugins_page() {
+ // Store new instance of plugin table in object.
+ $plugin_table = new TGMPA_List_Table();
+
+ // Return early if processing a plugin installation action.
+ if ( ( ( 'tgmpa-bulk-install' === $plugin_table->current_action() || 'tgmpa-bulk-update' === $plugin_table->current_action() ) && $plugin_table->process_bulk_actions() ) || $this->do_plugin_install() ) {
+ return;
+ }
+
+ // Force refresh of available plugin information so we'll know about manual updates/deletes.
+ wp_clean_plugins_cache( false );
+
+ ?>
+
';
+ }
+
+ return true;
+ } elseif ( isset( $this->plugins[ $slug ]['file_path'], $_GET['tgmpa-activate'] ) && 'activate-plugin' === $_GET['tgmpa-activate'] ) {
+ // Activate action link was clicked.
+ check_admin_referer( 'tgmpa-activate', 'tgmpa-nonce' );
+
+ if ( false === $this->activate_single_plugin( $this->plugins[ $slug ]['file_path'], $slug ) ) {
+ return true; // Finish execution of the function early as we encountered an error.
+ }
+ }
+
+ return false;
+ }
+
+ /**
+ * Inject information into the 'update_plugins' site transient as WP checks that before running an update.
+ *
+ * @since 2.5.0
+ *
+ * @param array $plugins The plugin information for the plugins which are to be updated.
+ */
+ public function inject_update_info( $plugins ) {
+ $repo_updates = get_site_transient( 'update_plugins' );
+
+ if ( ! is_object( $repo_updates ) ) {
+ $repo_updates = new stdClass();
+ }
+
+ foreach ( $plugins as $slug => $plugin ) {
+ $file_path = $plugin['file_path'];
+
+ if ( empty( $repo_updates->response[ $file_path ] ) ) {
+ $repo_updates->response[ $file_path ] = new stdClass();
+ }
+
+ // We only really need to set package, but let's do all we can in case WP changes something.
+ $repo_updates->response[ $file_path ]->slug = $slug;
+ $repo_updates->response[ $file_path ]->plugin = $file_path;
+ $repo_updates->response[ $file_path ]->new_version = $plugin['version'];
+ $repo_updates->response[ $file_path ]->package = $plugin['source'];
+ if ( empty( $repo_updates->response[ $file_path ]->url ) && ! empty( $plugin['external_url'] ) ) {
+ $repo_updates->response[ $file_path ]->url = $plugin['external_url'];
+ }
+ }
+
+ set_site_transient( 'update_plugins', $repo_updates );
+ }
+
+ /**
+ * Adjust the plugin directory name if necessary.
+ *
+ * The final destination directory of a plugin is based on the subdirectory name found in the
+ * (un)zipped source. In some cases - most notably GitHub repository plugin downloads -, this
+ * subdirectory name is not the same as the expected slug and the plugin will not be recognized
+ * as installed. This is fixed by adjusting the temporary unzipped source subdirectory name to
+ * the expected plugin slug.
+ *
+ * @since 2.5.0
+ *
+ * @param string $source Path to upgrade/zip-file-name.tmp/subdirectory/.
+ * @param string $remote_source Path to upgrade/zip-file-name.tmp.
+ * @param \WP_Upgrader $upgrader Instance of the upgrader which installs the plugin.
+ * @return string $source
+ */
+ public function maybe_adjust_source_dir( $source, $remote_source, $upgrader ) {
+ if ( ! $this->is_tgmpa_page() || ! is_object( $GLOBALS['wp_filesystem'] ) ) {
+ return $source;
+ }
+
+ // Check for single file plugins.
+ $source_files = array_keys( $GLOBALS['wp_filesystem']->dirlist( $remote_source ) );
+ if ( 1 === count( $source_files ) && false === $GLOBALS['wp_filesystem']->is_dir( $source ) ) {
+ return $source;
+ }
+
+ // Multi-file plugin, let's see if the directory is correctly named.
+ $desired_slug = '';
+
+ // Figure out what the slug is supposed to be.
+ if ( false === $upgrader->bulk && ! empty( $upgrader->skin->options['extra']['slug'] ) ) {
+ $desired_slug = $upgrader->skin->options['extra']['slug'];
+ } else {
+ // Bulk installer contains less info, so fall back on the info registered here.
+ foreach ( $this->plugins as $slug => $plugin ) {
+ if ( ! empty( $upgrader->skin->plugin_names[ $upgrader->skin->i ] ) && $plugin['name'] === $upgrader->skin->plugin_names[ $upgrader->skin->i ] ) {
+ $desired_slug = $slug;
+ break;
+ }
+ }
+ unset( $slug, $plugin );
+ }
+
+ if ( ! empty( $desired_slug ) ) {
+ $subdir_name = untrailingslashit( str_replace( trailingslashit( $remote_source ), '', $source ) );
+
+ if ( ! empty( $subdir_name ) && $subdir_name !== $desired_slug ) {
+ $from_path = untrailingslashit( $source );
+ $to_path = trailingslashit( $remote_source ) . $desired_slug;
+
+ if ( true === $GLOBALS['wp_filesystem']->move( $from_path, $to_path ) ) {
+ return trailingslashit( $to_path );
+ } else {
+ return new WP_Error( 'rename_failed', esc_html__( 'The remote plugin package does not contain a folder with the desired slug and renaming did not work.', 'yeuchaybo' ) . ' ' . esc_html__( 'Please contact the plugin provider and ask them to package their plugin according to the WordPress guidelines.', 'yeuchaybo' ), array( 'found' => $subdir_name, 'expected' => $desired_slug ) );
+ }
+ } elseif ( empty( $subdir_name ) ) {
+ return new WP_Error( 'packaged_wrong', esc_html__( 'The remote plugin package consists of more than one file, but the files are not packaged in a folder.', 'yeuchaybo' ) . ' ' . esc_html__( 'Please contact the plugin provider and ask them to package their plugin according to the WordPress guidelines.', 'yeuchaybo' ), array( 'found' => $subdir_name, 'expected' => $desired_slug ) );
+ }
+ }
+
+ return $source;
+ }
+
+ /**
+ * Activate a single plugin and send feedback about the result to the screen.
+ *
+ * @since 2.5.0
+ *
+ * @param string $file_path Path within wp-plugins/ to main plugin file.
+ * @param string $slug Plugin slug.
+ * @param bool $automatic Whether this is an automatic activation after an install. Defaults to false.
+ * This determines the styling of the output messages.
+ * @return bool False if an error was encountered, true otherwise.
+ */
+ protected function activate_single_plugin( $file_path, $slug, $automatic = false ) {
+ if ( $this->can_plugin_activate( $slug ) ) {
+ $activate = activate_plugin( $file_path );
+
+ if ( is_wp_error( $activate ) ) {
+ echo '
';
+
+ return false; // End it here if there is an error with activation.
+ } else {
+ if ( ! $automatic ) {
+ // Make sure message doesn't display again if bulk activation is performed
+ // immediately after a single activation.
+ if ( ! isset( $_POST['action'] ) ) { // WPCS: CSRF OK.
+ echo '
';
+ }
+ }
+ } elseif ( $this->is_plugin_active( $slug ) ) {
+ // No simpler message format provided as this message should never be encountered
+ // on the plugin install page.
+ echo '
';
+ } elseif ( $this->does_plugin_require_update( $slug ) ) {
+ if ( ! $automatic ) {
+ // Make sure message doesn't display again if bulk activation is performed
+ // immediately after a single activation.
+ if ( ! isset( $_POST['action'] ) ) { // WPCS: CSRF OK.
+ echo '
',
+ $color,
+ $item['available_version']
+ );
+ }
+
+ if ( empty( $output ) ) {
+ return ' '; // Let's not break the table layout.
+ } else {
+ return implode( "\n", $output );
+ }
+ }
+
+ /**
+ * Sets default message within the plugins table if no plugins
+ * are left for interaction.
+ *
+ * Hides the menu item to prevent the user from clicking and
+ * getting a permissions error.
+ *
+ * @since 2.2.0
+ */
+ public function no_items() {
+ echo esc_html__( 'No plugins to install, update or activate.', 'yeuchaybo' ) . ' ' . esc_html__( 'Return to the Dashboard', 'yeuchaybo' ) . '';
+ echo '';
+ }
+
+ /**
+ * Output all the column information within the table.
+ *
+ * @since 2.2.0
+ *
+ * @return array $columns The column names.
+ */
+ public function get_columns() {
+ $columns = array(
+ 'cb' => '',
+ 'plugin' => __( 'Plugin', 'yeuchaybo' ),
+ 'source' => __( 'Source', 'yeuchaybo' ),
+ 'type' => __( 'Type', 'yeuchaybo' ),
+ );
+
+ if ( 'all' === $this->view_context || 'update' === $this->view_context ) {
+ $columns['version'] = __( 'Version', 'yeuchaybo' );
+ $columns['status'] = __( 'Status', 'yeuchaybo' );
+ }
+
+ return apply_filters( 'tgmpa_table_columns', $columns );
+ }
+
+ /**
+ * Get name of default primary column
+ *
+ * @since 2.5.0 / WP 4.3+ compatibility
+ * @access protected
+ *
+ * @return string
+ */
+ protected function get_default_primary_column_name() {
+ return 'plugin';
+ }
+
+ /**
+ * Get the name of the primary column.
+ *
+ * @since 2.5.0 / WP 4.3+ compatibility
+ * @access protected
+ *
+ * @return string The name of the primary column.
+ */
+ protected function get_primary_column_name() {
+ if ( method_exists( 'WP_List_Table', 'get_primary_column_name' ) ) {
+ return parent::get_primary_column_name();
+ } else {
+ return $this->get_default_primary_column_name();
+ }
+ }
+
+ /**
+ * Get the actions which are relevant for a specific plugin row.
+ *
+ * @since 2.5.0
+ *
+ * @param array $item Array of item data.
+ * @return array Array with relevant action links.
+ */
+ protected function get_row_actions( $item ) {
+ $actions = array();
+ $action_links = array();
+
+ // Display the 'Install' action link if the plugin is not yet available.
+ if ( ! $this->tgmpa->is_plugin_installed( $item['slug'] ) ) {
+ /* translators: %2$s: plugin name in screen reader markup */
+ $actions['install'] = __( 'Install %2$s', 'yeuchaybo' );
+ } else {
+ // Display the 'Update' action link if an update is available and WP complies with plugin minimum.
+ if ( false !== $this->tgmpa->does_plugin_have_update( $item['slug'] ) && $this->tgmpa->can_plugin_update( $item['slug'] ) ) {
+ /* translators: %2$s: plugin name in screen reader markup */
+ $actions['update'] = __( 'Update %2$s', 'yeuchaybo' );
+ }
+
+ // Display the 'Activate' action link, but only if the plugin meets the minimum version.
+ if ( $this->tgmpa->can_plugin_activate( $item['slug'] ) ) {
+ /* translators: %2$s: plugin name in screen reader markup */
+ $actions['activate'] = __( 'Activate %2$s', 'yeuchaybo' );
+ }
+ }
+
+ // Create the actual links.
+ foreach ( $actions as $action => $text ) {
+ $nonce_url = wp_nonce_url(
+ add_query_arg(
+ array(
+ 'plugin' => urlencode( $item['slug'] ),
+ 'tgmpa-' . $action => $action . '-plugin',
+ ),
+ $this->tgmpa->get_tgmpa_url()
+ ),
+ 'tgmpa-' . $action,
+ 'tgmpa-nonce'
+ );
+
+ $action_links[ $action ] = sprintf(
+ '' . esc_html( $text ) . '', // $text contains the second placeholder.
+ esc_url( $nonce_url ),
+ '' . esc_html( $item['sanitized_plugin'] ) . ''
+ );
+ }
+
+ $prefix = ( defined( 'WP_NETWORK_ADMIN' ) && WP_NETWORK_ADMIN ) ? 'network_admin_' : '';
+ return apply_filters( "tgmpa_{$prefix}plugin_action_links", array_filter( $action_links ), $item['slug'], $item, $this->view_context );
+ }
+
+ /**
+ * Generates content for a single row of the table.
+ *
+ * @since 2.5.0
+ *
+ * @param object $item The current item.
+ */
+ public function single_row( $item ) {
+ parent::single_row( $item );
+
+ /**
+ * Fires after each specific row in the TGMPA Plugins list table.
+ *
+ * The dynamic portion of the hook name, `$item['slug']`, refers to the slug
+ * for the plugin.
+ *
+ * @since 2.5.0
+ */
+ do_action( "tgmpa_after_plugin_row_{$item['slug']}", $item['slug'], $item, $this->view_context );
+ }
+
+ /**
+ * Show the upgrade notice below a plugin row if there is one.
+ *
+ * @since 2.5.0
+ *
+ * @see /wp-admin/includes/update.php
+ *
+ * @param string $slug Plugin slug.
+ * @param array $item The information available in this table row.
+ * @return null Return early if upgrade notice is empty.
+ */
+ public function wp_plugin_update_row( $slug, $item ) {
+ if ( empty( $item['upgrade_notice'] ) ) {
+ return;
+ }
+
+ echo '
+
+
+
',
+ esc_html__( 'Upgrade message from the plugin author:', 'yeuchaybo' ),
+ ' ', wp_kses_data( $item['upgrade_notice'] ), '
+
+
+
';
+ }
+
+ /**
+ * Extra controls to be displayed between bulk actions and pagination.
+ *
+ * @since 2.5.0
+ *
+ * @param string $which 'top' or 'bottom' table navigation.
+ */
+ public function extra_tablenav( $which ) {
+ if ( 'bottom' === $which ) {
+ $this->tgmpa->show_tgmpa_version();
+ }
+ }
+
+ /**
+ * Defines the bulk actions for handling registered plugins.
+ *
+ * @since 2.2.0
+ *
+ * @return array $actions The bulk actions for the plugin install table.
+ */
+ public function get_bulk_actions() {
+
+ $actions = array();
+
+ if ( 'update' !== $this->view_context && 'activate' !== $this->view_context ) {
+ if ( current_user_can( 'install_plugins' ) ) {
+ $actions['tgmpa-bulk-install'] = __( 'Install', 'yeuchaybo' );
+ }
+ }
+
+ if ( 'install' !== $this->view_context ) {
+ if ( current_user_can( 'update_plugins' ) ) {
+ $actions['tgmpa-bulk-update'] = __( 'Update', 'yeuchaybo' );
+ }
+ if ( current_user_can( 'activate_plugins' ) ) {
+ $actions['tgmpa-bulk-activate'] = __( 'Activate', 'yeuchaybo' );
+ }
+ }
+
+ return $actions;
+ }
+
+ /**
+ * Processes bulk installation and activation actions.
+ *
+ * The bulk installation process looks for the $_POST information and passes that
+ * through if a user has to use WP_Filesystem to enter their credentials.
+ *
+ * @since 2.2.0
+ */
+ public function process_bulk_actions() {
+ // Bulk installation process.
+ if ( 'tgmpa-bulk-install' === $this->current_action() || 'tgmpa-bulk-update' === $this->current_action() ) {
+
+ check_admin_referer( 'bulk-' . $this->_args['plural'] );
+
+ $install_type = 'install';
+ if ( 'tgmpa-bulk-update' === $this->current_action() ) {
+ $install_type = 'update';
+ }
+
+ $plugins_to_install = array();
+
+ // Did user actually select any plugins to install/update ?
+ if ( empty( $_POST['plugin'] ) ) {
+ if ( 'install' === $install_type ) {
+ $message = __( 'No plugins were selected to be installed. No action taken.', 'yeuchaybo' );
+ } else {
+ $message = __( 'No plugins were selected to be updated. No action taken.', 'yeuchaybo' );
+ }
+
+ echo '
', esc_html( $message ), '
';
+
+ return false;
+ }
+
+ if ( is_array( $_POST['plugin'] ) ) {
+ $plugins_to_install = (array) $_POST['plugin'];
+ } elseif ( is_string( $_POST['plugin'] ) ) {
+ // Received via Filesystem page - un-flatten array (WP bug #19643).
+ $plugins_to_install = explode( ',', $_POST['plugin'] );
+ }
+
+ // Sanitize the received input.
+ $plugins_to_install = array_map( 'urldecode', $plugins_to_install );
+ $plugins_to_install = array_map( array( $this->tgmpa, 'sanitize_key' ), $plugins_to_install );
+
+ // Validate the received input.
+ foreach ( $plugins_to_install as $key => $slug ) {
+ // Check if the plugin was registered with TGMPA and remove if not.
+ if ( ! isset( $this->tgmpa->plugins[ $slug ] ) ) {
+ unset( $plugins_to_install[ $key ] );
+ continue;
+ }
+
+ // For install: make sure this is a plugin we *can* install and not one already installed.
+ if ( 'install' === $install_type && true === $this->tgmpa->is_plugin_installed( $slug ) ) {
+ unset( $plugins_to_install[ $key ] );
+ }
+
+ // For updates: make sure this is a plugin we *can* update (update available and WP version ok).
+ if ( 'update' === $install_type && false === $this->tgmpa->is_plugin_updatetable( $slug ) ) {
+ unset( $plugins_to_install[ $key ] );
+ }
+ }
+
+ // No need to proceed further if we have no plugins to handle.
+ if ( empty( $plugins_to_install ) ) {
+ if ( 'install' === $install_type ) {
+ $message = __( 'No plugins are available to be installed at this time.', 'yeuchaybo' );
+ } else {
+ $message = __( 'No plugins are available to be updated at this time.', 'yeuchaybo' );
+ }
+
+ echo '
', esc_html( $message ), '
';
+
+ return false;
+ }
+
+ // Pass all necessary information if WP_Filesystem is needed.
+ $url = wp_nonce_url(
+ $this->tgmpa->get_tgmpa_url(),
+ 'bulk-' . $this->_args['plural']
+ );
+
+ // Give validated data back to $_POST which is the only place the filesystem looks for extra fields.
+ $_POST['plugin'] = implode( ',', $plugins_to_install ); // Work around for WP bug #19643.
+
+ $method = ''; // Leave blank so WP_Filesystem can populate it as necessary.
+ $fields = array_keys( $_POST ); // Extra fields to pass to WP_Filesystem.
+
+ if ( false === ( $creds = request_filesystem_credentials( esc_url_raw( $url ), $method, false, false, $fields ) ) ) {
+ return true; // Stop the normal page form from displaying, credential request form will be shown.
+ }
+
+ // Now we have some credentials, setup WP_Filesystem.
+ if ( ! WP_Filesystem( $creds ) ) {
+ // Our credentials were no good, ask the user for them again.
+ request_filesystem_credentials( esc_url_raw( $url ), $method, true, false, $fields );
+
+ return true;
+ }
+
+ /* If we arrive here, we have the filesystem */
+
+ // Store all information in arrays since we are processing a bulk installation.
+ $names = array();
+ $sources = array(); // Needed for installs.
+ $file_paths = array(); // Needed for upgrades.
+ $to_inject = array(); // Information to inject into the update_plugins transient.
+
+ // Prepare the data for validated plugins for the install/upgrade.
+ foreach ( $plugins_to_install as $slug ) {
+ $name = $this->tgmpa->plugins[ $slug ]['name'];
+ $source = $this->tgmpa->get_download_url( $slug );
+
+ if ( ! empty( $name ) && ! empty( $source ) ) {
+ $names[] = $name;
+
+ switch ( $install_type ) {
+
+ case 'install':
+ $sources[] = $source;
+ break;
+
+ case 'update':
+ $file_paths[] = $this->tgmpa->plugins[ $slug ]['file_path'];
+ $to_inject[ $slug ] = $this->tgmpa->plugins[ $slug ];
+ $to_inject[ $slug ]['source'] = $source;
+ break;
+ }
+ }
+ }
+ unset( $slug, $name, $source );
+
+ // Create a new instance of TGMPA_Bulk_Installer.
+ $installer = new TGMPA_Bulk_Installer(
+ new TGMPA_Bulk_Installer_Skin(
+ array(
+ 'url' => esc_url_raw( $this->tgmpa->get_tgmpa_url() ),
+ 'nonce' => 'bulk-' . $this->_args['plural'],
+ 'names' => $names,
+ 'install_type' => $install_type,
+ )
+ )
+ );
+
+ // Wrap the install process with the appropriate HTML.
+ echo '
';
+ } else {
+ $count = count( $plugin_names ); // Count so we can use _n function.
+ $plugin_names = array_map( array( 'TGMPA_Utils', 'wrap_in_strong' ), $plugin_names );
+ $last_plugin = array_pop( $plugin_names ); // Pop off last name to prep for readability.
+ $imploded = empty( $plugin_names ) ? $last_plugin : ( implode( ', ', $plugin_names ) . ' ' . esc_html_x( 'and', 'plugin A *and* plugin B', 'yeuchaybo' ) . ' ' . $last_plugin );
+
+ printf( // WPCS: xss ok.
+ '
%1$s %2$s.
',
+ esc_html( _n( 'The following plugin was activated successfully:', 'The following plugins were activated successfully:', $count, 'yeuchaybo' ) ),
+ $imploded
+ );
+
+ // Update recently activated plugins option.
+ $recent = (array) get_option( 'recently_activated' );
+ foreach ( $plugins_to_activate as $plugin => $time ) {
+ if ( isset( $recent[ $plugin ] ) ) {
+ unset( $recent[ $plugin ] );
+ }
+ }
+ update_option( 'recently_activated', $recent );
+ }
+
+ unset( $_POST ); // Reset the $_POST variable in case user wants to perform one action after another.
+
+ return true;
+ }
+
+ return false;
+ }
+
+ /**
+ * Prepares all of our information to be outputted into a usable table.
+ *
+ * @since 2.2.0
+ */
+ public function prepare_items() {
+ $columns = $this->get_columns(); // Get all necessary column information.
+ $hidden = array(); // No columns to hide, but we must set as an array.
+ $sortable = array(); // No reason to make sortable columns.
+ $primary = $this->get_primary_column_name(); // Column which has the row actions.
+ $this->_column_headers = array( $columns, $hidden, $sortable, $primary ); // Get all necessary column headers.
+
+ // Process our bulk activations here.
+ if ( 'tgmpa-bulk-activate' === $this->current_action() ) {
+ $this->process_bulk_actions();
+ }
+
+ // Store all of our plugin data into $items array so WP_List_Table can use it.
+ $this->items = apply_filters( 'tgmpa_table_data_items', $this->_gather_plugin_data() );
+ }
+
+ /* *********** DEPRECATED METHODS *********** */
+
+ /**
+ * Retrieve plugin data, given the plugin name.
+ *
+ * @since 2.2.0
+ * @deprecated 2.5.0 use {@see Plugin_Activation::_get_plugin_data_from_name()} instead.
+ * @see Plugin_Activation::_get_plugin_data_from_name()
+ *
+ * @param string $name Name of the plugin, as it was registered.
+ * @param string $data Optional. Array key of plugin data to return. Default is slug.
+ * @return string|boolean Plugin slug if found, false otherwise.
+ */
+ protected function _get_plugin_data_from_name( $name, $data = 'slug' ) {
+ _deprecated_function( __FUNCTION__, 'TGMPA 2.5.0', 'Plugin_Activation::_get_plugin_data_from_name()' );
+
+ return $this->tgmpa->_get_plugin_data_from_name( $name, $data );
+ }
+ }
+}
+
+
+if ( ! class_exists( 'TGM_Bulk_Installer' ) ) {
+
+ /**
+ * Hack: Prevent TGMPA v2.4.1- bulk installer class from being loaded if 2.4.1- is loaded after 2.5+.
+ *
+ * @since 2.5.2
+ *
+ * {@internal The TGMPA_Bulk_Installer class was originally called TGM_Bulk_Installer.
+ * For more information, see that class.}}
+ */
+ class TGM_Bulk_Installer {
+ }
+}
+if ( ! class_exists( 'TGM_Bulk_Installer_Skin' ) ) {
+
+ /**
+ * Hack: Prevent TGMPA v2.4.1- bulk installer skin class from being loaded if 2.4.1- is loaded after 2.5+.
+ *
+ * @since 2.5.2
+ *
+ * {@internal The TGMPA_Bulk_Installer_Skin class was originally called TGM_Bulk_Installer_Skin.
+ * For more information, see that class.}}
+ */
+ class TGM_Bulk_Installer_Skin {
+ }
+}
+
+/**
+ * The WP_Upgrader file isn't always available. If it isn't available,
+ * we load it here.
+ *
+ * We check to make sure no action or activation keys are set so that WordPress
+ * does not try to re-include the class when processing upgrades or installs outside
+ * of the class.
+ *
+ * @since 2.2.0
+ */
+add_action( 'admin_init', 'tgmpa_load_bulk_installer' );
+if ( ! function_exists( 'tgmpa_load_bulk_installer' ) ) {
+ /**
+ * Load bulk installer
+ */
+ function tgmpa_load_bulk_installer() {
+ // Silently fail if 2.5+ is loaded *after* an older version.
+ if ( ! isset( $GLOBALS['tgmpa'] ) ) {
+ return;
+ }
+
+ // Get TGMPA class instance.
+ $tgmpa_instance = call_user_func( array( get_class( $GLOBALS['tgmpa'] ), 'get_instance' ) );
+
+ if ( isset( $_GET['page'] ) && $tgmpa_instance->menu === $_GET['page'] ) {
+ if ( ! class_exists( 'Plugin_Upgrader', false ) ) {
+ require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
+ }
+
+ if ( ! class_exists( 'TGMPA_Bulk_Installer' ) ) {
+
+ /**
+ * Installer class to handle bulk plugin installations.
+ *
+ * Extends WP_Upgrader and customizes to suit the installation of multiple
+ * plugins.
+ *
+ * @since 2.2.0
+ *
+ * {@internal Since 2.5.0 the class is an extension of Plugin_Upgrader rather than WP_Upgrader.}}
+ * {@internal Since 2.5.2 the class has been renamed from TGM_Bulk_Installer to TGMPA_Bulk_Installer.
+ * This was done to prevent backward compatibility issues with v2.3.6.}}
+ *
+ * @package TGM-Plugin-Activation
+ * @author Thomas Griffin
+ * @author Gary Jones
+ */
+ class TGMPA_Bulk_Installer extends Plugin_Upgrader {
+ /**
+ * Holds result of bulk plugin installation.
+ *
+ * @since 2.2.0
+ *
+ * @var string
+ */
+ public $result;
+
+ /**
+ * Flag to check if bulk installation is occurring or not.
+ *
+ * @since 2.2.0
+ *
+ * @var boolean
+ */
+ public $bulk = false;
+
+ /**
+ * TGMPA instance
+ *
+ * @since 2.5.0
+ *
+ * @var object
+ */
+ protected $tgmpa;
+
+ /**
+ * Whether or not the destination directory needs to be cleared ( = on update).
+ *
+ * @since 2.5.0
+ *
+ * @var bool
+ */
+ protected $clear_destination = false;
+
+ /**
+ * References parent constructor and sets defaults for class.
+ *
+ * @since 2.2.0
+ *
+ * @param \Bulk_Upgrader_Skin|null $skin Installer skin.
+ */
+ public function __construct( $skin = null ) {
+ // Get TGMPA class instance.
+ $this->tgmpa = call_user_func( array( get_class( $GLOBALS['tgmpa'] ), 'get_instance' ) );
+
+ parent::__construct( $skin );
+
+ if ( isset( $this->skin->options['install_type'] ) && 'update' === $this->skin->options['install_type'] ) {
+ $this->clear_destination = true;
+ }
+
+ if ( $this->tgmpa->is_automatic ) {
+ $this->activate_strings();
+ }
+
+ add_action( 'upgrader_process_complete', array( $this->tgmpa, 'populate_file_path' ) );
+ }
+
+ /**
+ * Sets the correct activation strings for the installer skin to use.
+ *
+ * @since 2.2.0
+ */
+ public function activate_strings() {
+ $this->strings['activation_failed'] = __( 'Plugin activation failed.', 'yeuchaybo' );
+ $this->strings['activation_success'] = __( 'Plugin activated successfully.', 'yeuchaybo' );
+ }
+
+ /**
+ * Performs the actual installation of each plugin.
+ *
+ * @since 2.2.0
+ *
+ * @see WP_Upgrader::run()
+ *
+ * @param array $options The installation config options.
+ * @return null|array Return early if error, array of installation data on success.
+ */
+ public function run( $options ) {
+ $result = parent::run( $options );
+
+ // Reset the strings in case we changed one during automatic activation.
+ if ( $this->tgmpa->is_automatic ) {
+ if ( 'update' === $this->skin->options['install_type'] ) {
+ $this->upgrade_strings();
+ } else {
+ $this->install_strings();
+ }
+ }
+
+ return $result;
+ }
+
+ /**
+ * Processes the bulk installation of plugins.
+ *
+ * @since 2.2.0
+ *
+ * {@internal This is basically a near identical copy of the WP Core
+ * Plugin_Upgrader::bulk_upgrade() method, with minor adjustments to deal with
+ * new installs instead of upgrades.
+ * For ease of future synchronizations, the adjustments are clearly commented, but no other
+ * comments are added. Code style has been made to comply.}}
+ *
+ * @see Plugin_Upgrader::bulk_upgrade()
+ * @see https://core.trac.wordpress.org/browser/tags/4.2.1/src/wp-admin/includes/class-wp-upgrader.php#L838
+ * (@internal Last synced: Dec 31st 2015 against https://core.trac.wordpress.org/browser/trunk?rev=36134}}
+ *
+ * @param array $plugins The plugin sources needed for installation.
+ * @param array $args Arbitrary passed extra arguments.
+ * @return array|false Install confirmation messages on success, false on failure.
+ */
+ public function bulk_install( $plugins, $args = array() ) {
+ // [TGMPA + ] Hook auto-activation in.
+ add_filter( 'upgrader_post_install', array( $this, 'auto_activate' ), 10 );
+
+ $defaults = array(
+ 'clear_update_cache' => true,
+ );
+ $parsed_args = wp_parse_args( $args, $defaults );
+
+ $this->init();
+ $this->bulk = true;
+
+ $this->install_strings(); // [TGMPA + ] adjusted.
+
+ /* [TGMPA - ] $current = get_site_transient( 'update_plugins' ); */
+
+ /* [TGMPA - ] add_filter('upgrader_clear_destination', array($this, 'delete_old_plugin'), 10, 4); */
+
+ $this->skin->header();
+
+ // Connect to the Filesystem first.
+ $res = $this->fs_connect( array( WP_CONTENT_DIR, WP_PLUGIN_DIR ) );
+ if ( ! $res ) {
+ $this->skin->footer();
+ return false;
+ }
+
+ $this->skin->bulk_header();
+
+ /*
+ * Only start maintenance mode if:
+ * - running Multisite and there are one or more plugins specified, OR
+ * - a plugin with an update available is currently active.
+ * @TODO: For multisite, maintenance mode should only kick in for individual sites if at all possible.
+ */
+ $maintenance = ( is_multisite() && ! empty( $plugins ) );
+
+ /*
+ [TGMPA - ]
+ foreach ( $plugins as $plugin )
+ $maintenance = $maintenance || ( is_plugin_active( $plugin ) && isset( $current->response[ $plugin] ) );
+ */
+ if ( $maintenance ) {
+ $this->maintenance_mode( true );
+ }
+
+ $results = array();
+
+ $this->update_count = count( $plugins );
+ $this->update_current = 0;
+ foreach ( $plugins as $plugin ) {
+ $this->update_current++;
+
+ /*
+ [TGMPA - ]
+ $this->skin->plugin_info = get_plugin_data( WP_PLUGIN_DIR . '/' . $plugin, false, true);
+
+ if ( !isset( $current->response[ $plugin ] ) ) {
+ $this->skin->set_result('up_to_date');
+ $this->skin->before();
+ $this->skin->feedback('up_to_date');
+ $this->skin->after();
+ $results[$plugin] = true;
+ continue;
+ }
+
+ // Get the URL to the zip file.
+ $r = $current->response[ $plugin ];
+
+ $this->skin->plugin_active = is_plugin_active($plugin);
+ */
+
+ $result = $this->run(
+ array(
+ 'package' => $plugin, // [TGMPA + ] adjusted.
+ 'destination' => WP_PLUGIN_DIR,
+ 'clear_destination' => false, // [TGMPA + ] adjusted.
+ 'clear_working' => true,
+ 'is_multi' => true,
+ 'hook_extra' => array(
+ 'plugin' => $plugin,
+ ),
+ )
+ );
+
+ $results[ $plugin ] = $this->result;
+
+ // Prevent credentials auth screen from displaying multiple times.
+ if ( false === $result ) {
+ break;
+ }
+ } //end foreach $plugins
+
+ $this->maintenance_mode( false );
+
+ /**
+ * Fires when the bulk upgrader process is complete.
+ *
+ * @since WP 3.6.0 / TGMPA 2.5.0
+ *
+ * @param Plugin_Upgrader $this Plugin_Upgrader instance. In other contexts, $this, might
+ * be a Theme_Upgrader or Core_Upgrade instance.
+ * @param array $data {
+ * Array of bulk item update data.
+ *
+ * @type string $action Type of action. Default 'update'.
+ * @type string $type Type of update process. Accepts 'plugin', 'theme', or 'core'.
+ * @type bool $bulk Whether the update process is a bulk update. Default true.
+ * @type array $packages Array of plugin, theme, or core packages to update.
+ * }
+ */
+ do_action( 'upgrader_process_complete', $this, array(
+ 'action' => 'install', // [TGMPA + ] adjusted.
+ 'type' => 'plugin',
+ 'bulk' => true,
+ 'plugins' => $plugins,
+ ) );
+
+ $this->skin->bulk_footer();
+
+ $this->skin->footer();
+
+ // Cleanup our hooks, in case something else does a upgrade on this connection.
+ /* [TGMPA - ] remove_filter('upgrader_clear_destination', array($this, 'delete_old_plugin')); */
+
+ // [TGMPA + ] Remove our auto-activation hook.
+ remove_filter( 'upgrader_post_install', array( $this, 'auto_activate' ), 10 );
+
+ // Force refresh of plugin update information.
+ wp_clean_plugins_cache( $parsed_args['clear_update_cache'] );
+
+ return $results;
+ }
+
+ /**
+ * Handle a bulk upgrade request.
+ *
+ * @since 2.5.0
+ *
+ * @see Plugin_Upgrader::bulk_upgrade()
+ *
+ * @param array $plugins The local WP file_path's of the plugins which should be upgraded.
+ * @param array $args Arbitrary passed extra arguments.
+ * @return string|bool Install confirmation messages on success, false on failure.
+ */
+ public function bulk_upgrade( $plugins, $args = array() ) {
+
+ add_filter( 'upgrader_post_install', array( $this, 'auto_activate' ), 10 );
+
+ $result = parent::bulk_upgrade( $plugins, $args );
+
+ remove_filter( 'upgrader_post_install', array( $this, 'auto_activate' ), 10 );
+
+ return $result;
+ }
+
+ /**
+ * Abuse a filter to auto-activate plugins after installation.
+ *
+ * Hooked into the 'upgrader_post_install' filter hook.
+ *
+ * @since 2.5.0
+ *
+ * @param bool $bool The value we need to give back (true).
+ * @return bool
+ */
+ public function auto_activate( $bool ) {
+ // Only process the activation of installed plugins if the automatic flag is set to true.
+ if ( $this->tgmpa->is_automatic ) {
+ // Flush plugins cache so the headers of the newly installed plugins will be read correctly.
+ wp_clean_plugins_cache();
+
+ // Get the installed plugin file.
+ $plugin_info = $this->plugin_info();
+
+ // Don't try to activate on upgrade of active plugin as WP will do this already.
+ if ( ! is_plugin_active( $plugin_info ) ) {
+ $activate = activate_plugin( $plugin_info );
+
+ // Adjust the success string based on the activation result.
+ $this->strings['process_success'] = $this->strings['process_success'] . " \n";
+
+ if ( is_wp_error( $activate ) ) {
+ $this->skin->error( $activate );
+ $this->strings['process_success'] .= $this->strings['activation_failed'];
+ } else {
+ $this->strings['process_success'] .= $this->strings['activation_success'];
+ }
+ }
+ }
+
+ return $bool;
+ }
+ }
+ }
+
+ if ( ! class_exists( 'TGMPA_Bulk_Installer_Skin' ) ) {
+
+ /**
+ * Installer skin to set strings for the bulk plugin installations..
+ *
+ * Extends Bulk_Upgrader_Skin and customizes to suit the installation of multiple
+ * plugins.
+ *
+ * @since 2.2.0
+ *
+ * {@internal Since 2.5.2 the class has been renamed from TGM_Bulk_Installer_Skin to
+ * TGMPA_Bulk_Installer_Skin.
+ * This was done to prevent backward compatibility issues with v2.3.6.}}
+ *
+ * @see https://core.trac.wordpress.org/browser/trunk/src/wp-admin/includes/class-wp-upgrader-skins.php
+ *
+ * @package TGM-Plugin-Activation
+ * @author Thomas Griffin
+ * @author Gary Jones
+ */
+ class TGMPA_Bulk_Installer_Skin extends Bulk_Upgrader_Skin {
+ /**
+ * Holds plugin info for each individual plugin installation.
+ *
+ * @since 2.2.0
+ *
+ * @var array
+ */
+ public $plugin_info = array();
+
+ /**
+ * Holds names of plugins that are undergoing bulk installations.
+ *
+ * @since 2.2.0
+ *
+ * @var array
+ */
+ public $plugin_names = array();
+
+ /**
+ * Integer to use for iteration through each plugin installation.
+ *
+ * @since 2.2.0
+ *
+ * @var integer
+ */
+ public $i = 0;
+
+ /**
+ * TGMPA instance
+ *
+ * @since 2.5.0
+ *
+ * @var object
+ */
+ protected $tgmpa;
+
+ /**
+ * Constructor. Parses default args with new ones and extracts them for use.
+ *
+ * @since 2.2.0
+ *
+ * @param array $args Arguments to pass for use within the class.
+ */
+ public function __construct( $args = array() ) {
+ // Get TGMPA class instance.
+ $this->tgmpa = call_user_func( array( get_class( $GLOBALS['tgmpa'] ), 'get_instance' ) );
+
+ // Parse default and new args.
+ $defaults = array(
+ 'url' => '',
+ 'nonce' => '',
+ 'names' => array(),
+ 'install_type' => 'install',
+ );
+ $args = wp_parse_args( $args, $defaults );
+
+ // Set plugin names to $this->plugin_names property.
+ $this->plugin_names = $args['names'];
+
+ // Extract the new args.
+ parent::__construct( $args );
+ }
+
+ /**
+ * Sets install skin strings for each individual plugin.
+ *
+ * Checks to see if the automatic activation flag is set and uses the
+ * the proper strings accordingly.
+ *
+ * @since 2.2.0
+ */
+ public function add_strings() {
+ if ( 'update' === $this->options['install_type'] ) {
+ parent::add_strings();
+ /* translators: 1: plugin name, 2: action number 3: total number of actions. */
+ $this->upgrader->strings['skin_before_update_header'] = __( 'Updating Plugin %1$s (%2$d/%3$d)', 'yeuchaybo' );
+ } else {
+ /* translators: 1: plugin name, 2: error message. */
+ $this->upgrader->strings['skin_update_failed_error'] = __( 'An error occurred while installing %1$s: %2$s.', 'yeuchaybo' );
+ /* translators: 1: plugin name. */
+ $this->upgrader->strings['skin_update_failed'] = __( 'The installation of %1$s failed.', 'yeuchaybo' );
+
+ if ( $this->tgmpa->is_automatic ) {
+ // Automatic activation strings.
+ $this->upgrader->strings['skin_upgrade_start'] = __( 'The installation and activation process is starting. This process may take a while on some hosts, so please be patient.', 'yeuchaybo' );
+ /* translators: 1: plugin name. */
+ $this->upgrader->strings['skin_update_successful'] = __( '%s installed and activated successfully.', 'yeuchaybo' ) . ' ' . esc_html__( 'Show Details', 'yeuchaybo' ) . '' . esc_html__( 'Hide Details', 'yeuchaybo' ) . '.';
+ $this->upgrader->strings['skin_upgrade_end'] = __( 'All installations and activations have been completed.', 'yeuchaybo' );
+ /* translators: 1: plugin name, 2: action number 3: total number of actions. */
+ $this->upgrader->strings['skin_before_update_header'] = __( 'Installing and Activating Plugin %1$s (%2$d/%3$d)', 'yeuchaybo' );
+ } else {
+ // Default installation strings.
+ $this->upgrader->strings['skin_upgrade_start'] = __( 'The installation process is starting. This process may take a while on some hosts, so please be patient.', 'yeuchaybo' );
+ /* translators: 1: plugin name. */
+ $this->upgrader->strings['skin_update_successful'] = esc_html__( '%s installed successfully.', 'yeuchaybo' ) . ' ' . esc_html__( 'Show Details', 'yeuchaybo' ) . '' . esc_html__( 'Hide Details', 'yeuchaybo' ) . '.';
+ $this->upgrader->strings['skin_upgrade_end'] = __( 'All installations have been completed.', 'yeuchaybo' );
+ /* translators: 1: plugin name, 2: action number 3: total number of actions. */
+ $this->upgrader->strings['skin_before_update_header'] = __( 'Installing Plugin %1$s (%2$d/%3$d)', 'yeuchaybo' );
+ }
+ }
+ }
+
+ /**
+ * Outputs the header strings and necessary JS before each plugin installation.
+ *
+ * @since 2.2.0
+ *
+ * @param string $title Unused in this implementation.
+ */
+ public function before( $title = '' ) {
+ if ( empty( $title ) ) {
+ $title = esc_html( $this->plugin_names[ $this->i ] );
+ }
+ parent::before( $title );
+ }
+
+ /**
+ * Outputs the footer strings and necessary JS after each plugin installation.
+ *
+ * Checks for any errors and outputs them if they exist, else output
+ * success strings.
+ *
+ * @since 2.2.0
+ *
+ * @param string $title Unused in this implementation.
+ */
+ public function after( $title = '' ) {
+ if ( empty( $title ) ) {
+ $title = esc_html( $this->plugin_names[ $this->i ] );
+ }
+ parent::after( $title );
+
+ $this->i++;
+ }
+
+ /**
+ * Outputs links after bulk plugin installation is complete.
+ *
+ * @since 2.2.0
+ */
+ public function bulk_footer() {
+ // Serve up the string to say installations (and possibly activations) are complete.
+ parent::bulk_footer();
+
+ // Flush plugins cache so we can make sure that the installed plugins list is always up to date.
+ wp_clean_plugins_cache();
+
+ $this->tgmpa->show_tgmpa_version();
+
+ // Display message based on if all plugins are now active or not.
+ $update_actions = array();
+
+ if ( $this->tgmpa->is_tgmpa_complete() ) {
+ // All plugins are active, so we display the complete string and hide the menu to protect users.
+ echo '';
+ $update_actions['dashboard'] = sprintf(
+ esc_html( $this->tgmpa->strings['complete'] ),
+ '' . esc_html__( 'Return to the Dashboard', 'yeuchaybo' ) . ''
+ );
+ } else {
+ $update_actions['tgmpa_page'] = '' . esc_html( $this->tgmpa->strings['return'] ) . '';
+ }
+
+ /**
+ * Filter the list of action links available following bulk plugin installs/updates.
+ *
+ * @since 2.5.0
+ *
+ * @param array $update_actions Array of plugin action links.
+ * @param array $plugin_info Array of information for the last-handled plugin.
+ */
+ $update_actions = apply_filters( 'tgmpa_update_bulk_plugins_complete_actions', $update_actions, $this->plugin_info );
+
+ if ( ! empty( $update_actions ) ) {
+ $this->feedback( implode( ' | ', (array) $update_actions ) );
+ }
+ }
+
+ /* *********** DEPRECATED METHODS *********** */
+
+ /**
+ * Flush header output buffer.
+ *
+ * @since 2.2.0
+ * @deprecated 2.5.0 use {@see Bulk_Upgrader_Skin::flush_output()} instead
+ * @see Bulk_Upgrader_Skin::flush_output()
+ */
+ public function before_flush_output() {
+ _deprecated_function( __FUNCTION__, 'TGMPA 2.5.0', 'Bulk_Upgrader_Skin::flush_output()' );
+ $this->flush_output();
+ }
+
+ /**
+ * Flush footer output buffer and iterate $this->i to make sure the
+ * installation strings reference the correct plugin.
+ *
+ * @since 2.2.0
+ * @deprecated 2.5.0 use {@see Bulk_Upgrader_Skin::flush_output()} instead
+ * @see Bulk_Upgrader_Skin::flush_output()
+ */
+ public function after_flush_output() {
+ _deprecated_function( __FUNCTION__, 'TGMPA 2.5.0', 'Bulk_Upgrader_Skin::flush_output()' );
+ $this->flush_output();
+ $this->i++;
+ }
+ }
+ }
+ }
+ }
+}
+
+if ( ! class_exists( 'TGMPA_Utils' ) ) {
+
+ /**
+ * Generic utilities for TGMPA.
+ *
+ * All methods are static, poor-dev name-spacing class wrapper.
+ *
+ * Class was called TGM_Utils in 2.5.0 but renamed TGMPA_Utils in 2.5.1 as this was conflicting with Soliloquy.
+ *
+ * @since 2.5.0
+ *
+ * @package TGM-Plugin-Activation
+ * @author Juliette Reinders Folmer
+ */
+ class TGMPA_Utils {
+ /**
+ * Whether the PHP filter extension is enabled.
+ *
+ * @see http://php.net/book.filter
+ *
+ * @since 2.5.0
+ *
+ * @static
+ *
+ * @var bool $has_filters True is the extension is enabled.
+ */
+ public static $has_filters;
+
+ /**
+ * Wrap an arbitrary string in tags. Meant to be used in combination with array_map().
+ *
+ * @since 2.5.0
+ *
+ * @static
+ *
+ * @param string $string Text to be wrapped.
+ * @return string
+ */
+ public static function wrap_in_em( $string ) {
+ return '' . wp_kses_post( $string ) . '';
+ }
+
+ /**
+ * Wrap an arbitrary string in tags. Meant to be used in combination with array_map().
+ *
+ * @since 2.5.0
+ *
+ * @static
+ *
+ * @param string $string Text to be wrapped.
+ * @return string
+ */
+ public static function wrap_in_strong( $string ) {
+ return '' . wp_kses_post( $string ) . '';
+ }
+
+ /**
+ * Helper function: Validate a value as boolean
+ *
+ * @since 2.5.0
+ *
+ * @static
+ *
+ * @param mixed $value Arbitrary value.
+ * @return bool
+ */
+ public static function validate_bool( $value ) {
+ if ( ! isset( self::$has_filters ) ) {
+ self::$has_filters = extension_loaded( 'filter' );
+ }
+
+ if ( self::$has_filters ) {
+ return filter_var( $value, FILTER_VALIDATE_BOOLEAN );
+ } else {
+ return self::emulate_filter_bool( $value );
+ }
+ }
+
+ /**
+ * Helper function: Cast a value to bool
+ *
+ * @since 2.5.0
+ *
+ * @static
+ *
+ * @param mixed $value Value to cast.
+ * @return bool
+ */
+ protected static function emulate_filter_bool( $value ) {
+ // @codingStandardsIgnoreStart
+ static $true = array(
+ '1',
+ 'true', 'True', 'TRUE',
+ 'y', 'Y',
+ 'yes', 'Yes', 'YES',
+ 'on', 'On', 'ON',
+ );
+ static $false = array(
+ '0',
+ 'false', 'False', 'FALSE',
+ 'n', 'N',
+ 'no', 'No', 'NO',
+ 'off', 'Off', 'OFF',
+ );
+ // @codingStandardsIgnoreEnd
+
+ if ( is_bool( $value ) ) {
+ return $value;
+ } elseif ( is_int( $value ) && ( 0 === $value || 1 === $value ) ) {
+ return (bool) $value;
+ } elseif ( ( is_float( $value ) && ! is_nan( $value ) ) && ( (float) 0 === $value || (float) 1 === $value ) ) {
+ return (bool) $value;
+ } elseif ( is_string( $value ) ) {
+ $value = trim( $value );
+ if ( in_array( $value, $true, true ) ) {
+ return true;
+ } elseif ( in_array( $value, $false, true ) ) {
+ return false;
+ } else {
+ return false;
+ }
+ }
+
+ return false;
+ }
+ } // End of class TGMPA_Utils
+} // End of class_exists wrapper
+
+// Add custom plugins to register hook.
+add_action( 'tgmpa_register', 'corporate_register_required_plugins' );
diff --git a/includes/rgba.php b/includes/rgba.php
new file mode 100755
index 0000000..7fe6c69
--- /dev/null
+++ b/includes/rgba.php
@@ -0,0 +1,123 @@
+palette ) ) {
+
+ $palette = implode( '|', $this->palette );
+
+ } else {
+
+ // Default to true.
+ $palette = ( false === $this->palette || 'false' === $this->palette ) ? 'false' : 'true';
+
+ }
+
+ // Support passing show_opacity as string or boolean. Default to true.
+ $show_opacity = ( false === $this->show_opacity || 'false' === $this->show_opacity ) ? 'false' : 'true';
+
+ // Begin the output.
+ if ( isset( $this->label ) && '' !== $this->label ) {
+
+ echo '' . esc_html( $this->label ) . '';
+
+ }
+
+ ?>
+
+ 'before-header',
+ 'name' => __( 'Before Header', 'yeuchaybo' ),
+ 'description' => __( 'Before Header widget area.', 'yeuchaybo' ),
+) );
+
+// Register Before Footer widget area.
+genesis_register_sidebar( array(
+ 'id' => 'before-footer',
+ 'name' => __( 'Before Footer', 'yeuchaybo' ),
+ 'description' => __( 'Before Footer widget area.', 'yeuchaybo' ),
+) );
+
+// Register Footer Credits widget area.
+genesis_register_sidebar( array(
+ 'id' => 'footer-credits',
+ 'name' => __( 'Footer Credits', 'yeuchaybo' ),
+ 'description' => __( 'Footer Credits widget area.', 'yeuchaybo' ),
+) );
+
+// Register Front Page widget areas.
+genesis_register_sidebar( array(
+ 'id' => 'front-page-1',
+ 'name' => __( 'Front Page 1', 'yeuchaybo' ),
+ 'description' => __( 'This widget area can be used to display a large hero image, video or slider on the home page.', 'yeuchaybo' ),
+ 'before_title' => '
',
+ 'after_title' => '
',
+) );
+genesis_register_sidebar( array(
+ 'id' => 'front-page-2',
+ 'name' => __( 'Front Page 2', 'yeuchaybo' ),
+ 'description' => __( 'This widget area can be used to display brand logos on the home page.', 'yeuchaybo' ),
+) );
+genesis_register_sidebar( array(
+ 'id' => 'front-page-3',
+ 'name' => __( 'Front Page 3', 'yeuchaybo' ),
+ 'description' => __( 'This widget area can be used to display a video section and grid of icons on the home page.', 'yeuchaybo' ),
+) );
+genesis_register_sidebar( array(
+ 'id' => 'front-page-4',
+ 'name' => __( 'Front Page 4', 'yeuchaybo' ),
+ 'description' => __( 'This widget area can be used to display a large image on the home page.', 'yeuchaybo' ),
+) );
+genesis_register_sidebar( array(
+ 'id' => 'front-page-5',
+ 'name' => __( 'Front Page 5', 'yeuchaybo' ),
+ 'description' => __( 'This widget area can be used to display an image gallery on the home page.', 'yeuchaybo' ),
+) );
+genesis_register_sidebar( array(
+ 'id' => 'front-page-6',
+ 'name' => __( 'Front Page 6', 'yeuchaybo' ),
+ 'description' => __( 'This widget area can be used to display a call to action banner on the home page.', 'yeuchaybo' ),
+) );
+genesis_register_sidebar( array(
+ 'id' => 'front-page-7',
+ 'name' => __( 'Front Page 7', 'yeuchaybo' ),
+ 'description' => __( 'This widget area can be used to display a pricing table and testimonials on the home page.', 'yeuchaybo' ),
+) );
+genesis_register_sidebar( array(
+ 'id' => 'front-page-8',
+ 'name' => __( 'Front Page 8', 'yeuchaybo' ),
+ 'description' => __( 'This widget area can be used to display recent blog posts on the home page.', 'yeuchaybo' ),
+) );
+genesis_register_sidebar( array(
+ 'id' => 'front-page-9',
+ 'name' => __( 'Front Page 9', 'yeuchaybo' ),
+ 'description' => __( 'This widget area can be used to display a newsletter sign up form on the home page.', 'yeuchaybo' ),
+) );
+
+add_action( 'genesis_before_header_wrap', 'corporate_before_header' );
+/**
+ * Display Before Header widget area.
+ *
+ * This widget area is hooked to the before header wrap, inside of the
+ * site-header element and outside of the site-header wrap creating
+ * a full width section across the top of the screen while still
+ * keeping semantically valid inside of the site-header scope.
+ *
+ * @since 1.0.0
+ *
+ * @return void
+ */
+function corporate_before_header() {
+
+ genesis_widget_area( 'before-header', array(
+ 'before' => '
Duis pulvinar arcu a ultrices monk dapibus. Etiam suscipit sed quam vel auctor.
+
Save everything to dropbox
+
Duis pulvinar arcu a ultrices monk dapibus. Etiam suscipit sed quam vel auctor.
+
Take notes and reminders
+
consectetur adipiscing elit. Sed neque mauris, porta id arcu ac, sagittis auctor ante.
+
Take control over messages
+
blandit porta, viverra nec metus. Maecenas in magna ullamcorper dolor commodo.
+
Our experts
+
+
Aenean nulla massa, feugiat nec blandit porta, viverra nec metus. Maecenas in magna ullamcorper dolor.
+
linda mccartney
+
+
consectetur adipiscing elit. Sed neque mauris, porta id arcu ac, sagittis auctor ante monke di paserstion.
+
JOHN ELOWER
+
+
Nulla faucibus commodo Duis pulvinar arcu a ultrices monk dapibus. Etiam suscipit sed quam vel auctor.
+
victor garberl
+ "My day is usually quite hectic. Before I used Taskraft I had to juggle all my various tasks in my mind throughout the day.
+Taskraft helped me get more organized, and now I simply get more done."
+
Our clients
+
+
+
+
+
+
+
+
+
About us
+
Phasellus sodal dictum dolor quis fringilla. Nunc accumsan velit sit amet enim maximus solsodales.
+
Our mission
+
Etiam fringilla lobortis risus, sed accumsan enim rutrum vel. Aenean iaculis magna libero, at blandit augue rhoncus sed.
+
Our offer
+
+
+ sed accumsan enim rutrum
+
+
+ Etiam fringilla lobortis
+
+
+ Aenean iaculis magna
+
+
]]>
+
+ 1165
+
+
+
+
+
+
+ 1539
+ 0
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.
";s:10:"margin_top";s:0:"";s:17:"margin_top_medium";s:0:"";s:21:"margin_top_responsive";s:0:"";s:13:"margin_bottom";s:0:"";s:20:"margin_bottom_medium";s:0:"";s:24:"margin_bottom_responsive";s:0:"";s:11:"margin_left";s:0:"";s:18:"margin_left_medium";s:0:"";s:22:"margin_left_responsive";s:0:"";s:12:"margin_right";s:0:"";s:19:"margin_right_medium";s:0:"";s:23:"margin_right_responsive";s:0:"";s:18:"responsive_display";s:0:"";s:18:"visibility_display";s:0:"";s:26:"visibility_user_capability";s:0:"";s:9:"animation";s:0:"";s:15:"animation_delay";s:3:"0.0";s:2:"id";s:0:"";s:5:"class";s:0:"";s:4:"type";s:9:"rich-text";}}}]]>
+
+
+
+
+
+
+
+ Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.
";s:10:"margin_top";s:0:"";s:17:"margin_top_medium";s:0:"";s:21:"margin_top_responsive";s:0:"";s:13:"margin_bottom";s:0:"";s:20:"margin_bottom_medium";s:0:"";s:24:"margin_bottom_responsive";s:0:"";s:11:"margin_left";s:0:"";s:18:"margin_left_medium";s:0:"";s:22:"margin_left_responsive";s:0:"";s:12:"margin_right";s:0:"";s:19:"margin_right_medium";s:0:"";s:23:"margin_right_responsive";s:0:"";s:18:"responsive_display";s:0:"";s:18:"visibility_display";s:0:"";s:26:"visibility_user_capability";s:0:"";s:9:"animation";s:0:"";s:15:"animation_delay";s:3:"0.0";s:2:"id";s:0:"";s:5:"class";s:0:"";s:4:"type";s:9:"rich-text";}}}]]>
+
+
+
+
+
+
+
+ Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.
";s:10:"margin_top";s:0:"";s:17:"margin_top_medium";s:0:"";s:21:"margin_top_responsive";s:0:"";s:13:"margin_bottom";s:0:"";s:20:"margin_bottom_medium";s:0:"";s:24:"margin_bottom_responsive";s:0:"";s:11:"margin_left";s:0:"";s:18:"margin_left_medium";s:0:"";s:22:"margin_left_responsive";s:0:"";s:12:"margin_right";s:0:"";s:19:"margin_right_medium";s:0:"";s:23:"margin_right_responsive";s:0:"";s:18:"responsive_display";s:0:"";s:18:"visibility_display";s:0:"";s:26:"visibility_user_capability";s:0:"";s:9:"animation";s:0:"";s:15:"animation_delay";s:3:"0.0";s:2:"id";s:0:"";s:5:"class";s:0:"";s:4:"type";s:9:"rich-text";}}}]]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Duis pulvinar arcu a ultrices monk dapibus. Etiam suscipit sed quam vel auctor.<\/p>","section_style":"","text_color":"#262626","typography_typography":"custom","typography_font_size":{"unit":"px","size":"17"},"typography_font_weight":"300","typography_line_height":{"unit":"em","size":"1.8"},"_section_style":"","_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","align_mobile":"center","typography_line_height_tablet":{"unit":"em","size":""},"typography_line_height_mobile":{"unit":"em","size":""},"_padding_mobile":{"unit":"px","top":"0","right":"30","bottom":"0","left":"30","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"7649c6ce","elType":"widget","settings":{"section_icon":"","icon":"fa fa-dropbox","link":{"is_external":"","url":""},"align":"left","section_style_icon":"","primary_color":"#2185f5","size":{"unit":"px","size":"40"},"icon_padding":{"unit":"em","size":""},"section_hover":"","_section_style":"","_padding":{"unit":"px","top":"020","right":"0","bottom":"0","left":"0","isLinked":false},"_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","align_tablet":"center","align_mobile":"center","_padding_mobile":{"unit":"px","top":"30","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"icon"},{"id":"849886a","elType":"widget","settings":{"section_title":"","title":"Save everything to dropbox","link":{"is_external":"","url":""},"size":"large","header_size":"h3","section_title_style":"","title_color":"#000000","typography_typography":"custom","typography_font_size":{"unit":"px","size":"20"},"typography_font_family":"Roboto","typography_line_height":{"unit":"em","size":2},"_section_style":"","_margin":{"unit":"px","top":"0","right":"0","bottom":"-10","left":"0","isLinked":false},"_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","align_mobile":"center","typography_line_height_tablet":{"unit":"em","size":""},"typography_line_height_mobile":{"unit":"em","size":""}},"elements":[],"widgetType":"heading"},{"id":"65cde6bf","elType":"widget","settings":{"section_editor":"","editor":"
Duis pulvinar arcu a ultrices monk dapibus. Etiam suscipit sed quam vel auctor.<\/p>","section_style":"","text_color":"#262626","typography_typography":"custom","typography_font_size":{"unit":"px","size":"17"},"typography_font_weight":"300","typography_line_height":{"unit":"em","size":"1.8"},"_section_style":"","_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","align_mobile":"center","typography_line_height_tablet":{"unit":"em","size":""},"typography_line_height_mobile":{"unit":"em","size":""},"_padding_mobile":{"unit":"px","top":"0","right":"30","bottom":"0","left":"30","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"133020c","elType":"column","settings":{"_column_size":50,"_inline_size":null,"section_style":"","border_radius":{"unit":"px","top":"0","right":"50","bottom":"0","left":"0","isLinked":false},"box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"section_typo":"","section_advanced":"","section_responsive":"","screen_xs":"default","screen_xs_width":"100"},"elements":[{"id":"60d4ca1","elType":"widget","settings":{"section_icon":"","icon":"fa fa-commenting-o","link":{"is_external":"","url":""},"align":"left","section_style_icon":"","primary_color":"#2185f5","size":{"unit":"px","size":"40"},"icon_padding":{"unit":"em","size":""},"section_hover":"","_section_style":"","_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","align_tablet":"center","align_mobile":"center","_padding_mobile":{"unit":"px","top":"30","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"icon"},{"id":"9558f25","elType":"widget","settings":{"section_title":"","title":"Take notes and reminders","link":{"is_external":"","url":""},"size":"large","header_size":"h3","section_title_style":"","title_color":"#000000","typography_typography":"custom","typography_font_size":{"unit":"px","size":"20"},"typography_font_family":"Roboto","typography_line_height":{"unit":"em","size":2},"_section_style":"","_margin":{"unit":"px","top":"0","right":"0","bottom":"-10","left":"0","isLinked":false},"_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","align_mobile":"center","typography_line_height_tablet":{"unit":"em","size":""},"typography_line_height_mobile":{"unit":"em","size":""}},"elements":[],"widgetType":"heading"},{"id":"4553cb75","elType":"widget","settings":{"section_editor":"","editor":"
consectetur adipiscing elit. Sed neque mauris, porta id arcu ac, sagittis auctor ante.<\/p>","section_style":"","text_color":"#262626","typography_typography":"custom","typography_font_size":{"unit":"px","size":"17"},"typography_font_weight":"300","typography_line_height":{"unit":"em","size":"1.8"},"_section_style":"","_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","align_mobile":"center","typography_line_height_tablet":{"unit":"em","size":""},"typography_line_height_mobile":{"unit":"em","size":""},"_padding_mobile":{"unit":"px","top":"0","right":"30","bottom":"0","left":"30","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"36149ce7","elType":"widget","settings":{"section_icon":"","icon":"fa fa-envelope-o","link":{"is_external":"","url":""},"align":"left","section_style_icon":"","primary_color":"#2185f5","size":{"unit":"px","size":"40"},"icon_padding":{"unit":"em","size":""},"section_hover":"","_section_style":"","_padding":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false},"_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","align_tablet":"center","align_mobile":"center","_padding_mobile":{"unit":"px","top":"30","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"icon"},{"id":"25713a9a","elType":"widget","settings":{"section_title":"","title":"Take control over messages","link":{"is_external":"","url":""},"size":"large","header_size":"h3","section_title_style":"","title_color":"#000000","typography_typography":"custom","typography_font_size":{"unit":"px","size":"20"},"typography_font_family":"Roboto","typography_line_height":{"unit":"em","size":2},"_section_style":"","_margin":{"unit":"px","top":"0","right":"0","bottom":"-10","left":"0","isLinked":false},"_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","align_mobile":"center","typography_line_height_tablet":{"unit":"em","size":""},"typography_line_height_mobile":{"unit":"em","size":""}},"elements":[],"widgetType":"heading"},{"id":"2f9d8d2c","elType":"widget","settings":{"section_editor":"","editor":"
blandit porta, viverra nec metus. Maecenas in magna ullamcorper dolor commodo.<\/p>","section_style":"","text_color":"#262626","typography_typography":"custom","typography_font_size":{"unit":"px","size":"17"},"typography_font_weight":"300","typography_line_height":{"unit":"em","size":"1.8"},"_section_style":"","_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","align_mobile":"center","typography_line_height_tablet":{"unit":"em","size":""},"typography_line_height_mobile":{"unit":"em","size":""},"_padding_mobile":{"unit":"px","top":"0","right":"30","bottom":"0","left":"30","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"24622af4","elType":"section","settings":{"section_layout":"","layout":"full_width","content_width":{"unit":"px","size":1140},"section_background":"","background_background":"classic","background_color":"#2185f5","background_overlay_title":"","section_border":"","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"section_typo":"","section_advanced":"","margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"padding":{"unit":"px","top":"60","right":"0","bottom":"0","left":"0","isLinked":false},"_section_responsive":"","responsive_description":"","padding_tablet":{"unit":"px","top":"50","right":"30","bottom":"0","left":"30","isLinked":false},"heading_visibility":""},"elements":[{"id":"2fcf94","elType":"column","settings":{"_column_size":100,"_inline_size":null,"section_style":"","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"section_typo":"","section_advanced":"","section_responsive":"","screen_xs":"default","screen_xs_width":"100"},"elements":[{"id":"4c5f907c","elType":"widget","settings":{"section_title":"","title":"Our experts","link":{"is_external":"","url":""},"size":"large","header_size":"h3","align":"center","section_title_style":"","title_color":"#ffffff","typography_typography":"custom","typography_font_size":{"unit":"px","size":"40"},"typography_font_family":"Montserrat Alternates","_section_style":"","_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","typography_line_height_tablet":{"unit":"em","size":""},"typography_line_height_mobile":{"unit":"em","size":""}},"elements":[],"widgetType":"heading"},{"id":"6a34f847","elType":"section","settings":{"section_layout":"","content_width":{"unit":"px","size":"1140"},"structure":"30","section_background":"","background_overlay_title":"","section_border":"","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"section_typo":"","section_advanced":"","padding":{"unit":"px","top":"30","right":"0","bottom":"100","left":"0","isLinked":false},"_section_responsive":"","responsive_description":"","column_position_inner":"middle","content_position_inner":"","heading_visibility":""},"elements":[{"id":"65ad405d","elType":"column","settings":{"_column_size":33,"_inline_size":null,"section_style":"","background_background":"classic","background_color":"#ffffff","box_shadow_box_shadow_type":"outset","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":"50","spread":0,"inset":"","color":"rgba(15,15,43,0.58)"},"section_typo":"","section_advanced":"","margin":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"padding":{"unit":"px","top":"60","right":"30","bottom":"60","left":"30","isLinked":false},"section_responsive":"","screen_xs":"default","screen_xs_width":"100","margin_tablet":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"margin_mobile":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true},"padding_tablet":{"unit":"px","top":"30","right":"20","bottom":"30","left":"20","isLinked":false}},"elements":[{"id":"7763d2f3","elType":"widget","settings":{"section_image":"","image":{"id":"1605","url":"https:\/\/corporate-pro.dev\/wp-content\/uploads\/2018\/04\/circle-1.png"},"align":"center","link":{"is_external":"","url":""},"section_style_image":"","space":{"unit":"%","size":"70"},"opacity":{"unit":"px","size":1},"section_style_caption":"","caption_typography_font_size":{"unit":"px","size":15},"_section_style":"","_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","image_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"align_tablet":"center","align_mobile":"center","caption_typography_line_height_tablet":{"unit":"em","size":""},"caption_typography_line_height_mobile":{"unit":"em","size":""},"image_size":"full"},"elements":[],"widgetType":"image"},{"id":"7133c8ba","elType":"widget","settings":{"section_editor":"","editor":"
Aenean nulla massa, feugiat nec blandit porta, viverra nec metus. Maecenas in magna ullamcorper dolor.<\/p>","section_style":"","align":"center","text_color":"#353535","typography_typography":"custom","typography_font_size":{"unit":"px","size":15},"typography_font_weight":"300","typography_line_height":{"unit":"em","size":2.1},"_section_style":"","_padding":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false},"_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","typography_font_size_tablet":{"unit":"px","size":"14"},"typography_line_height_tablet":{"unit":"em","size":""},"typography_line_height_mobile":{"unit":"em","size":""},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"339b3f9c","elType":"widget","settings":{"section_title":"","title":"linda mccartney","link":{"is_external":"","url":""},"size":"large","header_size":"h3","align":"center","section_title_style":"","title_color":"#000000","typography_typography":"custom","typography_font_size":{"unit":"px","size":17},"typography_font_weight":"600","typography_text_transform":"uppercase","_section_style":"","_padding":{"unit":"px","top":"10","right":"0","bottom":"10","left":"0","isLinked":false},"_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","typography_line_height_tablet":{"unit":"em","size":""},"typography_line_height_mobile":{"unit":"em","size":""}},"elements":[],"widgetType":"heading"}],"isInner":true},{"id":"6672d450","elType":"column","settings":{"_column_size":33,"_inline_size":null,"section_style":"","background_background":"classic","background_color":"#ffffff","box_shadow_box_shadow_type":"outset","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":"50","spread":0,"inset":"","color":"rgba(15,15,43,0.65)"},"section_typo":"","section_advanced":"","margin":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"padding":{"unit":"px","top":"60","right":"30","bottom":"60","left":"30","isLinked":false},"section_responsive":"","screen_xs":"default","screen_xs_width":"100","margin_mobile":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true},"padding_tablet":{"unit":"px","top":"30","right":"20","bottom":"30","left":"20","isLinked":false}},"elements":[{"id":"5a7ea287","elType":"widget","settings":{"section_image":"","image":{"id":"1606","url":"https:\/\/corporate-pro.dev\/wp-content\/uploads\/2018\/04\/circle2-1.png"},"align":"center","link":{"is_external":"","url":""},"section_style_image":"","space":{"unit":"%","size":"70"},"opacity":{"unit":"px","size":1},"section_style_caption":"","caption_typography_font_size":{"unit":"px","size":15},"_section_style":"","_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","image_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"align_tablet":"center","align_mobile":"center","caption_typography_line_height_tablet":{"unit":"em","size":""},"caption_typography_line_height_mobile":{"unit":"em","size":""},"image_size":"full"},"elements":[],"widgetType":"image"},{"id":"6aace25d","elType":"widget","settings":{"section_editor":"","editor":"
consectetur adipiscing elit. Sed neque mauris, porta id arcu ac, sagittis auctor ante monke di paserstion.<\/p>","section_style":"","align":"center","text_color":"#353535","typography_typography":"custom","typography_font_size":{"unit":"px","size":15},"typography_font_weight":"300","typography_line_height":{"unit":"em","size":"2.1"},"_section_style":"","_padding":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false},"_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","typography_font_size_tablet":{"unit":"px","size":"14"},"typography_line_height_tablet":{"unit":"em","size":""},"typography_line_height_mobile":{"unit":"em","size":""},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"},{"id":"6660ddee","elType":"widget","settings":{"section_title":"","title":"JOHN ELOWER","link":{"is_external":"","url":""},"size":"large","header_size":"h3","align":"center","section_title_style":"","title_color":"#000000","typography_typography":"custom","typography_font_size":{"unit":"px","size":17},"typography_font_weight":"600","typography_text_transform":"uppercase","_section_style":"","_padding":{"unit":"px","top":"10","right":"0","bottom":"10","left":"0","isLinked":false},"_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","typography_line_height_tablet":{"unit":"em","size":""},"typography_line_height_mobile":{"unit":"em","size":""}},"elements":[],"widgetType":"heading"}],"isInner":true},{"id":"322c914f","elType":"column","settings":{"_column_size":33,"_inline_size":null,"section_style":"","background_background":"classic","background_color":"#ffffff","box_shadow_box_shadow_type":"outset","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":"50","spread":0,"inset":"","color":"rgba(15,15,43,0.66)"},"section_typo":"","section_advanced":"","margin":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"padding":{"unit":"px","top":"60","right":"30","bottom":"60","left":"30","isLinked":false},"section_responsive":"","screen_xs":"default","screen_xs_width":"100","margin_mobile":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true},"padding_tablet":{"unit":"px","top":"30","right":"20","bottom":"30","left":"20","isLinked":false}},"elements":[{"id":"f1858c1","elType":"widget","settings":{"section_image":"","image":{"id":"1607","url":"https:\/\/corporate-pro.dev\/wp-content\/uploads\/2018\/04\/circle3-1.png"},"align":"center","link":{"is_external":"","url":""},"section_style_image":"","space":{"unit":"%","size":"70"},"opacity":{"unit":"px","size":1},"section_style_caption":"","caption_typography_font_size":{"unit":"px","size":15},"_section_style":"","_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","image_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"align_tablet":"center","align_mobile":"center","caption_typography_line_height_tablet":{"unit":"em","size":""},"caption_typography_line_height_mobile":{"unit":"em","size":""},"image_size":"full"},"elements":[],"widgetType":"image"},{"id":"79334f8a","elType":"widget","settings":{"section_editor":"","editor":"
Nulla faucibus commodo Duis pulvinar arcu a ultrices monk dapibus. Etiam suscipit sed quam vel auctor.<\/p>","section_style":"","align":"center","text_color":"#353535","typography_typography":"custom","typography_font_size":{"unit":"px","size":15},"typography_font_weight":"300","typography_line_height":{"unit":"em","size":"2.1"},"_section_style":"","_padding":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false},"_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","typography_font_size_tablet":{"unit":"px","size":"14"},"typography_line_height_tablet":{"unit":"em","size":""},"typography_line_height_mobile":{"unit":"em","size":""},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"},{"id":"6f01dc09","elType":"widget","settings":{"section_title":"","title":"victor garberl","link":{"is_external":"","url":""},"size":"large","header_size":"h3","align":"center","section_title_style":"","title_color":"#000000","typography_typography":"custom","typography_font_size":{"unit":"px","size":17},"typography_font_weight":"600","typography_text_transform":"uppercase","_section_style":"","_padding":{"unit":"px","top":"10","right":"0","bottom":"10","left":"0","isLinked":false},"_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","typography_line_height_tablet":{"unit":"em","size":""},"typography_line_height_mobile":{"unit":"em","size":""}},"elements":[],"widgetType":"heading"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"23dabe8c","elType":"section","settings":{"section_layout":"","content_width":{"unit":"px","size":968},"section_background":"","background_background":"classic","background_image":{"id":"1608","url":"https:\/\/corporate-pro.dev\/wp-content\/uploads\/2018\/04\/cover-pic-1.png"},"background_repeat":"no-repeat","background_size":"cover","background_overlay_title":"","background_overlay_background":"classic","background_overlay_color":"#1b1b24","section_border":"","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"section_typo":"","section_advanced":"","padding":{"unit":"px","top":"0","right":"0","bottom":"190","left":"0","isLinked":false},"_section_responsive":"","responsive_description":"","padding_tablet":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false},"heading_visibility":""},"elements":[{"id":"733c1d0f","elType":"column","settings":{"_column_size":100,"_inline_size":null,"section_style":"","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"section_typo":"","section_advanced":"","section_responsive":"","screen_xs":"default","screen_xs_width":"100"},"elements":[{"id":"6784993f","elType":"widget","settings":{"section_icon":"","icon":"fa fa-diamond","link":{"is_external":"","url":""},"section_style_icon":"","primary_color":"#2185f5","size":{"unit":"px","size":"70"},"icon_padding":{"unit":"em","size":""},"section_hover":"","_section_style":"","_padding":{"unit":"px","top":"0130","right":"0","bottom":"0","left":"0","isLinked":false},"_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","align_tablet":"center","align_mobile":"center","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"50","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon"},{"id":"254f1173","elType":"widget","settings":{"section_editor":"","editor":"\"My day is usually quite hectic. Before I used Taskraft I had to juggle all my various tasks in my mind throughout the day.\nTaskraft helped me get more organized, and now I simply get more done.\"","section_style":"","align":"center","text_color":"#ffffff","typography_typography":"custom","typography_font_size":{"unit":"px","size":"27"},"typography_font_family":"Roboto","typography_font_weight":"300","typography_line_height":{"unit":"em","size":1.7},"_section_style":"","_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","typography_font_size_tablet":{"unit":"px","size":"25"},"typography_font_size_mobile":{"unit":"px","size":"20"},"typography_line_height_tablet":{"unit":"em","size":""},"typography_line_height_mobile":{"unit":"em","size":""},"_padding_tablet":{"unit":"px","top":"0","right":"50","bottom":"0","left":"50","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"30","bottom":"0","left":"30","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false}],"isInner":false},{"id":"3173b749","elType":"section","settings":{"section_layout":"","content_width":{"unit":"px","size":1140},"section_background":"","background_overlay_title":"","section_border":"","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"section_typo":"","section_advanced":"","padding":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"_section_responsive":"","responsive_description":"","heading_visibility":""},"elements":[{"id":"6133b04","elType":"column","settings":{"_column_size":100,"_inline_size":null,"section_style":"","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"section_typo":"","section_advanced":"","section_responsive":"","screen_xs":"default","screen_xs_width":"100"},"elements":[{"id":"39310882","elType":"widget","settings":{"section_title":"","title":"Our clients","link":{"is_external":"","url":""},"size":"large","align":"center","section_title_style":"","title_color":"#000000","typography_typography":"custom","typography_font_size":{"unit":"px","size":"40"},"typography_font_family":"Montserrat Alternates","_section_style":"","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","typography_line_height_tablet":{"unit":"em","size":""},"typography_line_height_mobile":{"unit":"em","size":""}},"elements":[],"widgetType":"heading"},{"id":"3db656d5","elType":"section","settings":{"section_layout":"","content_width":{"unit":"px","size":1140},"gap":"wider","structure":"40","section_background":"","background_overlay_title":"","section_border":"","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"section_typo":"","section_advanced":"","_section_responsive":"","responsive_description":"","column_position_inner":"middle","content_position_inner":"","heading_visibility":""},"elements":[{"id":"7935e32f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"section_style":"","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"section_typo":"","section_advanced":"","section_responsive":"","screen_sm":"custom","screen_sm_width":"50","screen_xs":"default","screen_xs_width":"100","padding_mobile":{"unit":"px","top":"20","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[{"id":"5fc4b604","elType":"widget","settings":{"section_image":"","image":{"id":"1609","url":"https:\/\/corporate-pro.dev\/wp-content\/uploads\/2018\/04\/snycy.png"},"align":"center","link":{"is_external":"","url":""},"section_style_image":"","space":{"unit":"%","size":"100"},"opacity":{"unit":"px","size":1},"section_style_caption":"","caption_typography_font_size":{"unit":"px","size":15},"_section_style":"","_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","image_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"align_tablet":"center","align_mobile":"center","caption_typography_line_height_tablet":{"unit":"em","size":""},"caption_typography_line_height_mobile":{"unit":"em","size":""},"_padding_mobile":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"image_size":"full"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"694ac2a9","elType":"column","settings":{"_column_size":25,"_inline_size":null,"section_style":"","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"section_typo":"","section_advanced":"","section_responsive":"","screen_sm":"custom","screen_sm_width":"50","screen_xs":"default","screen_xs_width":"100","padding_mobile":{"unit":"px","top":"20","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[{"id":"598d63ae","elType":"widget","settings":{"section_image":"","image":{"id":"1610","url":"https:\/\/corporate-pro.dev\/wp-content\/uploads\/2018\/04\/x.venox_.png"},"align":"center","link":{"is_external":"","url":""},"section_style_image":"","space":{"unit":"%","size":100},"opacity":{"unit":"px","size":1},"section_style_caption":"","caption_typography_font_size":{"unit":"px","size":15},"_section_style":"","_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","image_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"align_tablet":"center","align_mobile":"center","caption_typography_line_height_tablet":{"unit":"em","size":""},"caption_typography_line_height_mobile":{"unit":"em","size":""},"_padding_mobile":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"image_size":"full"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"2b1d74e5","elType":"column","settings":{"_column_size":25,"_inline_size":null,"section_style":"","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"section_typo":"","section_advanced":"","section_responsive":"","screen_sm":"custom","screen_sm_width":"50","screen_xs":"default","screen_xs_width":"100","padding_mobile":{"unit":"px","top":"20","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[{"id":"77cdb946","elType":"widget","settings":{"section_image":"","image":{"id":"1611","url":"https:\/\/corporate-pro.dev\/wp-content\/uploads\/2018\/04\/quest.png"},"align":"center","link":{"is_external":"","url":""},"section_style_image":"","space":{"unit":"%","size":100},"opacity":{"unit":"px","size":1},"section_style_caption":"","caption_typography_font_size":{"unit":"px","size":15},"_section_style":"","_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","image_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"align_tablet":"center","align_mobile":"center","caption_typography_line_height_tablet":{"unit":"em","size":""},"caption_typography_line_height_mobile":{"unit":"em","size":""},"_padding_mobile":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"image_size":"full"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"158ae9db","elType":"column","settings":{"_column_size":25,"_inline_size":null,"section_style":"","border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"section_typo":"","section_advanced":"","section_responsive":"","screen_sm":"custom","screen_sm_width":"50","screen_xs":"default","screen_xs_width":"100","padding_mobile":{"unit":"px","top":"20","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[{"id":"50dae8cf","elType":"widget","settings":{"section_image":"","image":{"id":"1612","url":"https:\/\/corporate-pro.dev\/wp-content\/uploads\/2018\/04\/geo.png"},"align":"center","link":{"is_external":"","url":""},"section_style_image":"","space":{"unit":"%","size":100},"opacity":{"unit":"px","size":1},"section_style_caption":"","caption_typography_font_size":{"unit":"px","size":15},"_section_style":"","_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","image_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"align_tablet":"center","align_mobile":"center","caption_typography_line_height_tablet":{"unit":"em","size":""},"caption_typography_line_height_mobile":{"unit":"em","size":""},"_padding_mobile":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"image_size":"full"},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"3f537ec4","elType":"section","settings":{"section_layout":"","content_width":{"unit":"px","size":1140},"gap":"wider","structure":"40","section_background":"","background_overlay_title":"","section_border":"","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"section_typo":"","section_advanced":"","_section_responsive":"","responsive_description":"","column_position_inner":"middle","content_position_inner":"","heading_visibility":""},"elements":[{"id":"5a18e66c","elType":"column","settings":{"_column_size":25,"_inline_size":null,"section_style":"","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"section_typo":"","section_advanced":"","section_responsive":"","screen_sm":"custom","screen_sm_width":"50","screen_xs":"default","screen_xs_width":"100","padding_mobile":{"unit":"px","top":"20","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[{"id":"27195d0","elType":"widget","settings":{"section_image":"","image":{"id":"1613","url":"https:\/\/corporate-pro.dev\/wp-content\/uploads\/2018\/04\/madrin.png"},"align":"center","link":{"is_external":"","url":""},"section_style_image":"","space":{"unit":"%","size":100},"opacity":{"unit":"px","size":1},"section_style_caption":"","caption_typography_font_size":{"unit":"px","size":15},"_section_style":"","_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","image_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"align_tablet":"center","align_mobile":"center","caption_typography_line_height_tablet":{"unit":"em","size":""},"caption_typography_line_height_mobile":{"unit":"em","size":""},"_padding_mobile":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"image_size":"full"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"55d845ce","elType":"column","settings":{"_column_size":25,"_inline_size":null,"section_style":"","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"section_typo":"","section_advanced":"","section_responsive":"","screen_sm":"custom","screen_sm_width":"50","screen_xs":"default","screen_xs_width":"100","padding_mobile":{"unit":"px","top":"20","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[{"id":"5cc8bd63","elType":"widget","settings":{"section_image":"","image":{"id":"1614","url":"https:\/\/corporate-pro.dev\/wp-content\/uploads\/2018\/04\/digit.png"},"align":"center","link":{"is_external":"","url":""},"section_style_image":"","space":{"unit":"%","size":100},"opacity":{"unit":"px","size":1},"section_style_caption":"","caption_typography_font_size":{"unit":"px","size":15},"_section_style":"","_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","image_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"align_tablet":"center","align_mobile":"center","caption_typography_line_height_tablet":{"unit":"em","size":""},"caption_typography_line_height_mobile":{"unit":"em","size":""},"image_size":"full"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"439c9037","elType":"column","settings":{"_column_size":25,"_inline_size":null,"section_style":"","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"section_typo":"","section_advanced":"","section_responsive":"","screen_sm":"custom","screen_sm_width":"50","screen_xs":"default","screen_xs_width":"100","padding_mobile":{"unit":"px","top":"20","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[{"id":"6e0a27f4","elType":"widget","settings":{"section_image":"","image":{"id":"1615","url":"https:\/\/corporate-pro.dev\/wp-content\/uploads\/2018\/04\/mapmaster.png"},"align":"center","link":{"is_external":"","url":""},"section_style_image":"","space":{"unit":"%","size":100},"opacity":{"unit":"px","size":1},"section_style_caption":"","caption_typography_font_size":{"unit":"px","size":15},"_section_style":"","_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","image_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"align_tablet":"center","align_mobile":"center","caption_typography_line_height_tablet":{"unit":"em","size":""},"caption_typography_line_height_mobile":{"unit":"em","size":""},"_padding_mobile":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"image_size":"full"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"772edce9","elType":"column","settings":{"_column_size":25,"_inline_size":null,"section_style":"","border_radius":{"unit":"px","top":"20","right":"0","bottom":"20","left":"0","isLinked":false},"box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"section_typo":"","section_advanced":"","section_responsive":"","screen_sm":"custom","screen_sm_width":"50","screen_xs":"default","screen_xs_width":"100"},"elements":[{"id":"1783e27d","elType":"widget","settings":{"section_image":"","image":{"id":"1616","url":"https:\/\/corporate-pro.dev\/wp-content\/uploads\/2018\/04\/masso.png"},"align":"center","link":{"is_external":"","url":""},"section_style_image":"","space":{"unit":"%","size":100},"opacity":{"unit":"px","size":1},"section_style_caption":"","caption_typography_font_size":{"unit":"px","size":15},"_section_style":"","_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","image_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"align_tablet":"center","align_mobile":"center","caption_typography_line_height_tablet":{"unit":"em","size":""},"caption_typography_line_height_mobile":{"unit":"em","size":""},"_padding_mobile":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"image_size":"full"},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"e0ee3d1","elType":"section","settings":{"section_layout":"","content_width":{"unit":"px","size":1140},"gap":"wider","structure":"30","section_background":"","background_background":"classic","background_color":"#2185f5","background_overlay_title":"","section_border":"","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"section_typo":"","section_advanced":"","padding":{"unit":"px","top":"60","right":"0","bottom":"50","left":"0","isLinked":false},"_section_responsive":"","responsive_description":"","padding_tablet":{"unit":"px","top":"0","right":"30","bottom":"0","left":"30","isLinked":false},"padding_mobile":{"unit":"px","top":"30","right":"0","bottom":"30","left":"0","isLinked":false},"heading_visibility":""},"elements":[{"id":"4fffabae","elType":"column","settings":{"_column_size":33,"_inline_size":null,"section_style":"","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"section_typo":"","section_advanced":"","section_responsive":"","screen_xs":"default","screen_xs_width":"100","margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding_mobile":{"unit":"px","top":"0","right":"30","bottom":"30","left":"30","isLinked":false}},"elements":[{"id":"e493a0f","elType":"widget","settings":{"section_title":"","title":"About us","link":{"is_external":"","url":""},"size":"large","header_size":"h3","section_title_style":"","title_color":"#ffffff","typography_typography":"custom","typography_font_size":{"unit":"px","size":"21"},"typography_font_family":"Montserrat Alternates","_section_style":"","_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","align_mobile":"left","typography_line_height_tablet":{"unit":"em","size":""},"typography_line_height_mobile":{"unit":"em","size":""}},"elements":[],"widgetType":"heading"},{"id":"6da95a17","elType":"widget","settings":{"section_editor":"","editor":"
Phasellus sodal dictum dolor quis fringilla. Nunc accumsan velit sit amet enim maximus solsodales.<\/p>","section_style":"","text_color":"#ffffff","typography_typography":"custom","typography_font_size":{"unit":"px","size":"15"},"typography_font_weight":"100","typography_line_height":{"unit":"em","size":"1.9"},"_section_style":"","_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","align_mobile":"left","typography_line_height_tablet":{"unit":"em","size":""},"typography_line_height_mobile":{"unit":"em","size":""}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"587b8212","elType":"column","settings":{"_column_size":33,"_inline_size":null,"section_style":"","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"section_typo":"","section_advanced":"","section_responsive":"","screen_xs":"default","screen_xs_width":"100","padding_mobile":{"unit":"px","top":"0","right":"30","bottom":"30","left":"30","isLinked":false}},"elements":[{"id":"5da2744","elType":"widget","settings":{"section_title":"","title":"Our mission","link":{"is_external":"","url":""},"size":"large","header_size":"h3","section_title_style":"","title_color":"#ffffff","typography_typography":"custom","typography_font_size":{"unit":"px","size":"21"},"typography_font_family":"Montserrat Alternates","_section_style":"","_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","align_mobile":"left","typography_line_height_tablet":{"unit":"em","size":""},"typography_line_height_mobile":{"unit":"em","size":""}},"elements":[],"widgetType":"heading"},{"id":"17846016","elType":"widget","settings":{"section_editor":"","editor":"
Etiam fringilla lobortis risus, sed accumsan enim rutrum vel. Aenean iaculis magna libero, at blandit augue rhoncus sed.<\/p>","section_style":"","text_color":"#ffffff","typography_typography":"custom","typography_font_size":{"unit":"px","size":"15"},"typography_font_weight":"100","typography_line_height":{"unit":"em","size":"1.9"},"_section_style":"","_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","align_mobile":"left","typography_line_height_tablet":{"unit":"em","size":""},"typography_line_height_mobile":{"unit":"em","size":""}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"743c9ca5","elType":"column","settings":{"_column_size":33,"_inline_size":null,"section_style":"","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"section_typo":"","section_advanced":"","section_responsive":"","screen_xs":"default","screen_xs_width":"100","padding_mobile":{"unit":"px","top":"0","right":"30","bottom":"0","left":"30","isLinked":false}},"elements":[{"id":"7987aabf","elType":"widget","settings":{"section_title":"","title":"Our offer","link":{"is_external":"","url":""},"size":"large","header_size":"h3","section_title_style":"","title_color":"#ffffff","typography_typography":"custom","typography_font_size":{"unit":"px","size":"21"},"typography_font_family":"Montserrat Alternates","_section_style":"","_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","typography_line_height_tablet":{"unit":"em","size":""},"typography_line_height_mobile":{"unit":"em","size":""}},"elements":[],"widgetType":"heading"},{"id":"65dde995","elType":"widget","settings":{"section_icon":"","icon_list":[{"text":"sed accumsan enim rutrum ","icon":"fa fa-dot-circle-o","link":{"url":"","is_external":"","nofollow":""},"_id":"558a3f6"},{"text":"Etiam fringilla lobortis ","icon":"fa fa-dot-circle-o","link":{"url":"","is_external":"","nofollow":""},"_id":"eb5f5e0"},{"text":"Aenean iaculis magna ","icon":"fa fa-dot-circle-o","link":{"url":"","is_external":"","nofollow":""},"_id":"b301af3"}],"section_icon_style":"","icon_color":"#ffffff","icon_size":{"unit":"px","size":"15"},"section_text_style":"","text_indent":{"unit":"px","size":12},"text_color":"#ffffff","icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":"15"},"icon_typography_font_weight":"300","icon_typography_line_height":{"unit":"em","size":"2"},"_section_style":"","_section_background":"","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"inset":"","color":"rgba(0,0,0,0.5)"},"_section_responsive":"","responsive_description":"","icon_typography_line_height_tablet":{"unit":"em","size":""},"icon_typography_line_height_mobile":{"unit":"em","size":""}},"elements":[],"widgetType":"icon-list"}],"isInner":false}],"isInner":false}]]]>
This is an example of an intro paragraph that can be used to hook folks into reading your article or highlight a specific piece of information.
+
+
This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages as you like and manage all of your content inside of WordPress. This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages as you like and manage all of your content inside of WordPress.
+
+
This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages as you like and manage all of your content inside of WordPress.
+
+
This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages as you like and manage all of your content inside of WordPress. This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages as you like and manage all of your content inside of WordPress.
+
+
This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages as you like and manage all of your content inside of WordPress.
+
+
This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages as you like and manage all of your content inside of WordPress. This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages as you like and manage all of your content inside of WordPress.
+
+
This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages as you like and manage all of your content inside of WordPress.
This is an example of an intro paragraph that can be used to hook folks into reading your article or highlight a specific piece of information.
+
+
+
+
This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages as you like and manage all of your content inside of WordPress. This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages as you like and manage all of your content inside of WordPress.
+
+
+
+
This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages as you like and manage all of your content inside of WordPress.
+
+
+
+
This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages as you like and manage all of your content inside of WordPress. This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages as you like and manage all of your content inside of WordPress.
+
+
+
+
This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages as you like and manage all of your content inside of WordPress.
+
+
+
+
This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages as you like and manage all of your content inside of WordPress. This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages as you like and manage all of your content inside of WordPress.
+
+
+
+
This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages as you like and manage all of your content inside of WordPress.
This is an example of an intro paragraph that can be used to hook folks into reading your article or highlight a specific piece of information.
+
+
+
+
This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages as you like and manage all of your content inside of WordPress. This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages as you like and manage all of your content inside of WordPress.
+
+
+
+
This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages as you like and manage all of your content inside of WordPress.
+
+
+
+
This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages as you like and manage all of your content inside of WordPress. This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages as you like and manage all of your content inside of WordPress.
+
+
+
+
This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages as you like and manage all of your content inside of WordPress.
+
+
+
+
This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages as you like and manage all of your content inside of WordPress. This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages as you like and manage all of your content inside of WordPress.
+
+
+
+
This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages as you like and manage all of your content inside of WordPress.
This is an example of an intro paragraph that can be used to hook folks into reading your article or highlight a specific piece of information.
+
+
+
+
This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.
+
+
+
+
This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress. This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.
+
+
+
+
This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.
+
+
+
+
This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress. This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.
+
+
+
+
This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.
This is an example of an intro paragraph that can be used to hook folks into reading your article or highlight a specific piece of information.
+
+
+
+
This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.
+
+
+
+
This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress. This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.
+
+
+
+
This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.
+
+
+
+
This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress. This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.
+
+
+
+
This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.
This is an example of an intro paragraph that can be used to hook folks into reading your article or highlight a specific piece of information.
+
+
+
+
This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.
+
+
+
+
This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress. This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.
+
+
+
+
This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.
+
+
+
+
This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress. This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.
+
+
+
+
This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.
+
+
+This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.
+
+This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind. This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.]]>
+
+ 442
+
+
+
+
+
+
+ 0
+ 0
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Sample Post With an Unordered List
+ https://demo.seothemes.com/corporate-pro/unordered-list/
+ Sun, 01 Sep 2013 01:54:48 +0000
+
+ http://demo.studiopress.com/genesis/?p=11
+
+
+
Unordered list item #1
+
Unordered list item #2
+
Unordered list item #3
+
Unordered list item #4
+
Unordered list item #5
+
+
+This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.
+
+This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind. This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.]]>
+
+ 443
+
+
+
+
+
+
+ 0
+ 0
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Sample Post With Image Centered
+ https://demo.seothemes.com/corporate-pro/image-centered/
+ Sun, 01 Sep 2013 01:55:21 +0000
+
+ http://demo.studiopress.com/genesis/?p=13
+
+ Here's a sample caption with an image centered.[/caption]
+
+This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.
+
+This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind. This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.
+
+This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.
+
+This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind. This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.]]>
+
+ 444
+
+
+
+
+
+
+ 0
+ 0
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Sample Post With Image Aligned Right
+ https://demo.seothemes.com/corporate-pro/image-aligned-right/
+ Sun, 01 Sep 2013 01:56:30 +0000
+
+ http://demo.studiopress.com/genesis/?p=16
+
+ Here's a sample caption with an image aligned right.[/caption]
+
+This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like.
+
+This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind. This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like.
+
+This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.
+
+This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind. This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.]]>
+
+ 445
+
+
+
+
+
+
+ 0
+ 0
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Sample Post With Image Aligned Left
+ https://demo.seothemes.com/corporate-pro/image-aligned-left/
+ Sun, 01 Sep 2013 01:57:05 +0000
+
+ http://demo.studiopress.com/genesis/?p=18
+
+ Here's a sample caption with an image aligned left.[/caption]
+
+This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like.
+
+This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind. This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like.
+
+This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.
+
+This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind. This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.]]>
+
+ 446
+
+
+
+
+
+
+ 0
+ 0
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Sample Post With Threaded Comments
+ https://demo.seothemes.com/corporate-pro/threaded-comments/
+ Sun, 01 Sep 2013 01:57:18 +0000
+
+ http://demo.studiopress.com/genesis/?p=20
+
+
+
+ 447
+
+
+
+
+
+
+ 0
+ 0
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 7
+
+
+ http://www.seothemes.com/
+
+
+
+
+
+
+ 0
+ 1
+
+
+ 8
+
+
+ http://www.seothemes.com/
+
+
+
+
+
+
+ 7
+ 1
+
+
+ 9
+
+
+ http://www.seothemes.com/
+
+
+
+
+
+
+ 0
+ 1
+
+
+ 10
+
+
+ http://www.seothemes.com/
+
+
+
+
+
+
+ 9
+ 1
+
+
+ 11
+
+
+ http://www.seothemes.com/
+
+
+
+
+
+
+ 10
+ 1
+
+
+ 12
+
+
+
+
+
+
+
+
+
+ 0
+ 1
+
+
+ 13
+
+
+ http://demo.seothemes.com/blog/sample-trackback/
+
+
+
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 14
+
+
+ http://demo.seothemes.com/blog/sample-trackback-2/
+
+
+
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 15
+
+
+ http://www.seothemes.com/
+
+
+
+
+
+
+ 0
+ 1
+
+
+ 16
+
+
+ http://www.seothemes.com/
+
+
+
+
+
+
+ 15
+ 1
+
+
+ 17
+
+
+ http://www.seothemes.com/
+
+
+
+
+
+
+ 0
+ 1
+
+
+ 18
+
+
+ http://www.seothemes.com/
+
+
+
+
+
+
+ 17
+ 1
+
+
+ 19
+
+
+ http://www.seothemes.com/
+
+
+
+
+
+
+ 18
+ 1
+
+
+ 20
+
+
+
+
+
+
+
+
+
+ 0
+ 1
+
+
+
+ Sample Post With a Table
+ https://demo.seothemes.com/corporate-pro/sample-table/
+ Sun, 01 Sep 2013 01:53:31 +0000
+
+ http://www.genesisframework.com/?p=447
+
+
+
+
+
Developer
+
Location
+
Job Title
+
+
+
Lee Anthony
+
Illinois
+
Project Lead
+
+
+
Nathan Rice
+
South Carolina
+
Lead Developer
+
+
+
Rafal Tomal
+
Illinois
+
Lead Designer
+
+
+
Lauren Mancke
+
South Carolina
+
Lead Designer
+
+
+
+
+This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind. This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.
+
+This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.
+
+This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind. This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.]]>
+
+ 448
+
+
+
+
+
+
+ 0
+ 0
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Sample Post With Headlines
+ https://demo.seothemes.com/corporate-pro/headlines/
+ Sun, 01 Sep 2013 01:52:58 +0000
+
+ http://demo.studiopress.com/genesis/?p=5
+
+ Headline 1
+
Headline 2
+
Headline 3
+
Headline 4
+
Headline 5
+
Headline 6
]]>
+
+ 509
+
+
+
+
+
+
+ 0
+ 0
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Sample Post With a Blockquote
+ https://demo.seothemes.com/corporate-pro/blockquote/
+ Sun, 01 Sep 2013 01:54:12 +0000
+
+ http://demo.studiopress.com/genesis/?p=7
+
+ This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.
+
+This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.
+
+This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind. This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.]]>
+
+ 1174
+
+
+
+
+
+
+ 0
+ 0
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Project Nine
+ https://demo.seothemes.com/corporate-pro/portfolio/project-nine/
+ Wed, 13 Dec 2017 12:51:09 +0000
+
+ https://demo.seothemes.com/corporate-pro/?post_type=portfolio&p=1249
+
+
+
+ 1249
+
+
+
+
+
+
+ 0
+ 0
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Sample post with an image gallery
+ https://demo.seothemes.com/corporate-pro/sample-post-with-an-image-gallery/
+ Fri, 17 Nov 2017 23:03:53 +0000
+
+ https://demo.seothemes.com/corporate-pro/?p=1376
+
+
+
+ 1376
+
+
+
+
+
+
+ 0
+ 0
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Welcome to the Gutenberg Editor
+ https://demo.seothemes.com/corporate-pro/?p=1583
+ Mon, 30 Nov -0001 00:00:00 +0000
+
+ https://demo.seothemes.com/corporate-pro/?p=1583
+
+
+
+
Of Mountains & Printing Presses
+
+
+
+
+
The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you'll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.
+
+
+
+
What you are reading now is a text block, the most basic block of all. The text block has its own controls to be moved freely around the post...
+
+
+
+
... like this one, which is right aligned.
+
+
+
+
Headings are separate blocks as well, which helps with the outline and organization of your content.
+
+
+
+
A Picture is worth a Thousand Words
+
+
+
+
Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you'll find aspects of adding captions or going full-width with your pictures much easier and robust than before.
+
+
+
+
+ Give it a try. Press the "wide" button on the image toolbar.
+
+
+
+
+
Try selecting and removing or editing the caption, now you don't have to be careful about selecting the image or other text by mistake and ruining the presentation.
+
+
+
+
The Inserter Tool
+
+
+
+
Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That's the spirit behind the inserter—the (+) button you'll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.
+
+
+
+
Go give it a try, you may discover things WordPress can already add into your posts that you didn't know about. Here's a short list of what you can currently find there:
+
+
+
+
+
Text & Headings
+
Images & Videos
+
Galleries
+
Embeds, like YouTube, Tweets, or other WordPress posts.
+
Layout blocks, like Buttons, Hero Images, Separators, etc.
+
And Lists like this one of course :)
+
+
+
+
+
+
+
+
+
Visual Editing
+
+
+
+
A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:
+
+
+
+
+
The editor will endeavour to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.
Matt Mullenweg, 2017
+
+
+
+
The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It's always easy to add it back.
+
+
+
+
Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.
+
+
+
+
Media Rich
+
+
+
+
If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:
+
+
+
+
+
+
+
+
Sure, the full-wide image can be pretty big. But sometimes the image is worth it.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
The above is a gallery with just two images. It's an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.
+
+
+
+
Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:
+
+
+
+
+ https://vimeo.com/22439234
+
+
+
+
+
You can build any block you like, static or dynamic, decorative or plain. Here's a pullquote block:
+
+
+
+
+
Code is Poetry
The WordPress community
+
+
+
+
If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.
+]]>
+
+ 1583
+
+
+
+
+
+
+ 0
+ 0
+
+
+ 0
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Sue Miller
+ https://demo.seothemes.com/corporate-pro/?testimonial=cara-bridgett
+ Sun, 19 Nov 2017 08:59:01 +0000
+
+ https://demo.seothemes.com/corporate-pro/?post_type=testimonial&p=42
+
+
+
+ 42
+
+
+
+
+
+
+ 0
+ 0
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Drew Ward
+ https://demo.seothemes.com/corporate-pro/?testimonial=craig-darcy
+ Mon, 20 Nov 2017 08:59:26 +0000
+
+ https://demo.seothemes.com/corporate-pro/?post_type=testimonial&p=43
+
+
+
+ 43
+
+
+
+
+
+
+ 0
+ 0
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Hiro Levy
+ https://demo.seothemes.com/corporate-pro/?testimonial=mark-smith
+ Sun, 19 Nov 2017 08:59:52 +0000
+
+ https://demo.seothemes.com/corporate-pro/?post_type=testimonial&p=44
+
+
+
+ 44
+
+
+
+
+
+
+ 0
+ 0
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Sample post with basic formatting
+ https://demo.seothemes.com/corporate-pro/sample-post-with-basic-formatting/
+ Tue, 21 Nov 2017 14:40:23 +0000
+
+ https://demo.seothemes.com/corporate-pro/?p=152
+
+ Formatting text
+The WordPress editor allows you to use keyboard shortcuts for quickly applying styles to text. The most common shortcuts are of course, bold text, italic text, and hyperlinks. These generally make up the bulk of any document. You can type the characters out, but you can also use keyboard shortcuts.
+
+
CMD/Ctrl + B for Bold
+
CMD/Ctrl + I for Italic
+
CMD/Ctrl + K for a Link
+
+With just a couple of extra characters here and there, you're well on your way to creating a beautifully formatted story.
+
Inserting images
+Images can be inserted directly into the post content by clicking the Add Media button:
+
+
+
+This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.
+
+This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from.
+
Making lists
+This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.
+
+
Crack the eggs over a bowl
+
Whisk them together
+
Make an omellete
+
+or
+
+
Remember to buy milk
+
Feed the cat
+
Come up with idea for next story
+
+
Adding quotes
+This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from.
+
A well placed quote guides a reader through a story, helping them to understand the most important points being made
+All themes handles blockquotes slightly differently. Sometimes they'll look better kept shorter, while other times you can quote fairly hefty amounts of text and get away with it. Generally, the safest option is to use blockquotes sparingly.
+
+ ]]>
+
+ 152
+
+
+
+
+
+
+ 0
+ 0
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Paula Davis
+ https://demo.seothemes.com/corporate-pro/?testimonial=nancy-huff
+ Thu, 07 Dec 2017 06:08:36 +0000
+
+ https://demo.seothemes.com/corporate-pro/?post_type=testimonial&p=280
+
+
+
+ 280
+
+
+
+
+
+
+ 0
+ 0
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Sample post with advanced post formatting
+ https://demo.seothemes.com/corporate-pro/sample-post-with-advanced-post-formatting/
+ Mon, 11 Dec 2017 05:13:54 +0000
+
+ https://demo.seothemes.com/corporate-pro/?p=334
+
+ all the basics of writing in WordPress, then you may enjoy some more advanced tips about the types of things you can do!
+
+As with the last post about the editor, you'll want to be actually editing this post as you read it so that you can see all the cool stuff we're using.
+
Special formatting
+As well as bold and italics, you can also use some other special formatting in the editor when the need arises, for example:
+
+
strike through
+
highlight
+
*escaped characters*
+
+
Writing code blocks
+Code elements can be created in the editor by switching the text style to Preformatted. Code is formatted by wrapping any word or words in pre tags, <pre>like this</pre>. Larger snippets of code can be displayed across multiple lines like this:
+
.my-link {
+ text-decoration: underline;
+}
+
Full width images
+One neat trick which you can use in WordPress to distinguish between different types of images is to add a class value to the image itself from the Advanced Settings tab, and then target images containing the class with special styling. For example:
+
+
+
+which is styled with...
+
img.full-width {
+ max-width: 100vw;
+}
+
+This creates full-bleed images in the Corporate Pro theme, which stretch beyond their usual boundaries right up to the edge of the window. Every theme handles these types of things slightly differently, but it's a great trick to play with if you want to have a variety of image sizes and styles.
+
+
+Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec eu purus dapibus, cursus augue vitae, convallis elit.
+
+
+
+
+
";}}]]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Welcome to Corporate Pro Genesis child theme.
+Designed to give your website a professional look to gain the trust of your clients and customers.
+
+Work with usLearn more";}i:1;a:3:{s:19:"seo_slider_image_id";i:36;s:16:"seo_slider_image";s:85:"https://demo.seothemes.com/corporate-pro/wp-content/uploads/2017/11/corporate-2-1.jpg";s:18:"seo_slider_content";s:361:"
The first Gutenberg ready Genesis child theme.
+Built in support for the new WordPress editor which allows you to utilize all of the latest features.
+
+Start free trialGutenberg demo";}i:2;a:3:{s:19:"seo_slider_image_id";i:37;s:16:"seo_slider_image";s:83:"https://demo.seothemes.com/corporate-pro/wp-content/uploads/2017/11/corporate-1.jpg";s:18:"seo_slider_content";s:351:"
The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you'll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.
+
+
+
+
What you are reading now is a text block, the most basic block of all. The text block has its own controls to be moved freely around the post...
+
+
+
+
... like this one, which is right aligned.
+
+
+
+
Headings are separate blocks as well, which helps with the outline and organization of your content.
+
+
+
+
A Picture is worth a Thousand Words
+
+
+
+
Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you'll find aspects of adding captions or going full-width with your pictures much easier and robust than before.
+
+
+
+
+ Give it a try. Press the "wide" button on the image toolbar.
+
+
+
+
+
Try selecting and removing or editing the caption, now you don't have to be careful about selecting the image or other text by mistake and ruining the presentation.
+
+
+
+
The Inserter Tool
+
+
+
+
Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That's the spirit behind the inserter—the (+) button you'll see around the editor—which allows you to browse all available content blocks and insert them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.
+
+
+
+
Go give it a try, you may discover things WordPress can already insert into your posts that you didn't know about. Here's a short list of what you can currently find there:
+
+
+
+
+
Text & Headings
+
Images & Videos
+
Galleries
+
Embeds, like YouTube, Tweets, or other WordPress posts.
+
Layout blocks, like Buttons, Hero Images, Separators, etc.
+
And Lists like this one of course :)
+
+
+
+
+
+
+
+
+
Visual Editing
+
+
+
+
A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:
+
+
+
+
+
The editor will endeavour to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.
Matt Mullenweg, 2017
+
+
+
+
The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It's always easy to add it back.
+
+
+
+
Blocks can be anything you need. For instance, you may want to insert a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.
+
+
+
+
+
+
+
+
+
+
+
+
You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.
+
+
+
+
Media Rich
+
+
+
+
If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:
+
+
+
+
+
+
+
+
Sure, the full-wide image can be pretty big. But sometimes the image is worth it.
+
+
+
+
+
+
+
+
+
+
+
The above is a gallery with just two images. It's an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.
+
+
+
+
Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:
You can build any block you like, static or dynamic, decorative or plain. Here's a pullquote block:
+
+
+
+
+
Code is Poetry
The WordPress community
+
+
+
+
If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat.
+
+
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat.
+
+
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat.
+]]>
+ Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat.
* This contact form was built with Contact Form 7.
+1
+Corporate Pro "[your-subject]"
+[your-name]
+admin@corporate-pro.dev
+From: [your-name] <[your-email]>
+Subject: [your-subject]
+
+Message Body:
+[your-message]
+
+--
+This e-mail was sent from a contact form on Corporate Pro (https://demo.seothemes.com/corporate-pro)
+Reply-To: [your-email]
+
+
+
+
+Corporate Pro "[your-subject]"
+Corporate Pro
+[your-email]
+Message Body:
+[your-message]
+
+--
+This e-mail was sent from a contact form on Corporate Pro (https://demo.seothemes.com/corporate-pro)
+Reply-To: admin@corporate-pro.dev
+
+
+
+Thank you for your message. It has been sent.
+There was an error trying to send your message. Please try again later.
+One or more fields have an error. Please check and try again.
+There was an error trying to send your message. Please try again later.
+You must accept the terms and conditions before sending your message.
+The field is required.
+The field is too long.
+The field is too short.
+The date format is incorrect.
+The date is before the earliest one allowed.
+The date is after the latest one allowed.
+There was an unknown error uploading the file.
+You are not allowed to upload files of this type.
+The file is too big.
+There was an error uploading the file.
+The number format is invalid.
+The number is smaller than the minimum allowed.
+The number is larger than the maximum allowed.
+The answer to the quiz is incorrect.
+Your entered code is incorrect.
+The e-mail address entered is invalid.
+The URL is invalid.
+The telephone number is invalid.]]>
+
+ 1498
+
+
+
+
+
+
+ 0
+ 0
+
+
+ 0
+
+
+ Your Name (required)
+ [text* your-name]
+
+
+
+
+
+
+
+[submit "Send"]
+
+
* This contact form was built with Contact Form 7.
]]>
+
+
+
+ ";s:9:"recipient";s:23:"admin@corporate-pro.dev";s:4:"body";s:192:"From: [your-name] <[your-email]>
+Subject: [your-subject]
+
+Message Body:
+[your-message]
+
+--
+This e-mail was sent from a contact form on Corporate Pro (https://demo.seothemes.com/corporate-pro)";s:18:"additional_headers";s:22:"Reply-To: [your-email]";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]>
+
+
+
+ ";s:9:"recipient";s:12:"[your-email]";s:4:"body";s:134:"Message Body:
+[your-message]
+
+--
+This e-mail was sent from a contact form on Corporate Pro (https://demo.seothemes.com/corporate-pro)";s:18:"additional_headers";s:33:"Reply-To: admin@corporate-pro.dev";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/screenshot.png b/screenshot.png
new file mode 100644
index 0000000..9710832
Binary files /dev/null and b/screenshot.png differ
diff --git a/settings.json b/settings.json
new file mode 100755
index 0000000..35f6567
--- /dev/null
+++ b/settings.json
@@ -0,0 +1 @@
+{"genesis-settings":{"theme_version":"2.5.2","db_version":2503,"first_version":"2.0.2","update":1,"update_email_address":"","feed_uri":"","comments_feed_uri":"","site_layout":"full-width-content","breadcrumb_single":1,"comments_posts":1,"trackbacks_posts":1,"content_archive":"full","content_archive_limit":150,"content_archive_thumbnail":1,"image_size":"portfolio","image_alignment":"","posts_nav":"numeric","blog_cat":0,"blog_cat_exclude":"","blog_cat_num":6,"header_scripts":"","footer_scripts":"","breadcrumb_front_page":0,"breadcrumb_home":0,"breadcrumb_page":0,"breadcrumb_posts_page":0,"breadcrumb_archive":0,"breadcrumb_404":0,"breadcrumb_attachment":0,"comments_pages":0,"superfish":0,"redirect_feed":0,"redirect_comments_feed":0,"trackbacks_pages":0,"update_email":0,"blog_title":"","nav_extras":"","nav_extras_twitter_id":"","style_selection":"","nav_extras_twitter_text":""}}
\ No newline at end of file
diff --git a/setup.sh b/setup.sh
new file mode 100755
index 0000000..8ddf8a7
--- /dev/null
+++ b/setup.sh
@@ -0,0 +1,230 @@
+#!/bin/bash
+# Theme setup.
+
+# Defaults
+default_name="Corporate Pro"
+default_id="corporate-pro"
+default_author="SEO Themes"
+default_author_url="https://seothemes.com"
+default_package="SEOThemes\GenesisStarterTheme"
+default_url="https://genesis-starter.test"
+
+# Directories
+basedir="$( cd "$( dirname "$0" )" && pwd )/."
+assetsdir="$basedir/assets"
+sassdir="$basedir/assets/styles"
+basedir_all_files="$basedir/."
+setup_script="$basedir/setup.sh"
+
+# Text styles
+bold=$(tput bold)
+white=$(tput setaf 7)
+pink=$(tput setaf 198)
+green=$(tput setaf 2)
+blue=$(tput setaf 4)
+txtreset=$(tput sgr0)
+
+echo "${bold}${blue}
+ __ __
+ ________ ____ / /_/ /_ ___ ____ ___ ___ _____
+ / ___/ _ \/ __ \/ __/ __ \/ _ \/ __ '__ \/ _ \/ ___/
+ (__ ) ___/ /_/ / /_/ / / / __/ / / / / / ___(__ )
+/____/\___/\____/\__/_/ /_/\___/_/ /_/ /_/\___/____/
+
+${txtreset}"
+# echo "${bold}
+ # Genesis Starter Theme
+ # ${txtreset}"
+
+echo "1) Set name for your theme. (Default: $default_name)"
+read name
+
+# use default if empty
+if test -n "$name"; then
+ echo ""
+else
+ name=$default_name
+fi
+
+echo "2) Set unique id for your theme. Use only a-z and _. (Default: $default_id)"
+read id
+
+# use default if empty
+if test -n "$id"; then
+ echo ""
+else
+ id=$default_id
+fi
+
+echo "3) Set the author name for your theme. Use only a-z and _. (Default: $default_author)"
+read author
+
+# use default if empty
+if test -n "$author"; then
+ echo ""
+else
+ author=$default_author
+fi
+
+echo "4) Set the author URL for your theme. Use only a-z and _. (Default: $default_author_url)"
+read author_url
+
+# use default if empty
+if test -n "$author_url"; then
+ echo ""
+else
+ author_url=$default_author_url
+fi
+
+echo "5) Set the package name for your theme. Use only a-z and _. (Default: $default_package)"
+read package
+
+# use default if empty
+if test -n "$package"; then
+ echo ""
+else
+ package=$default_package
+fi
+
+echo "6) Set local development url. Note: An SSL is required to use HTTPS (Default: $default_url)"
+read url
+
+# use default if empty
+if test -n "$url"; then
+ echo ""
+else
+ url=$default_url
+fi
+
+while true; do
+read -p "9) Is following information correct?
+
+name: ${bold}${pink}$name${txtreset} (Default: $default_name)
+id: ${bold}${pink}$id${txtreset} (Default: $default_id)
+author: ${bold}${pink}$author${txtreset} (Default: $default_author)
+author_url: ${bold}${pink}$author_url${txtreset} (Default: $default_author_url)
+package: ${bold}${pink}$package${txtreset} (Default: $default_package)
+url: ${bold}${pink}$url${txtreset} (Default: $default_url)
+
+Proceed to install? [y/N]
+" yn
+ case $yn in
+ [Yy]* ) break;;
+ [Nn]* ) exit;;
+ * ) echo "Please answer y or n.";;
+ esac
+done
+
+echo "
+Run setup:
+=========="
+
+# ----------------------------------------------------------------
+# Search & Replace Name
+# ----------------------------------------------------------------
+
+# style.css
+find "$basedir" -name 'style.css' -type f -exec perl -p -i -e "s|$default_name|$name|g" {} \;
+
+# style.scss
+find "$sassdir" -name 'style.scss' -type f -exec perl -p -i -e "s|$default_name|$name|g" {} \;
+
+# PHP files
+find "$basedir_all_files" -name '*.php' -type f -exec perl -p -i -e "s|$default_name|$name|g" {} \;
+
+# README.md
+find "$basedir" -name 'README.md' -type f -exec perl -p -i -e "s|$default_name|$name|g" {} \;
+
+# package.json
+find "$basedir" -name 'package.json' -type f -exec perl -p -i -e "s|$default_name|$name|g" {} \;
+
+echo "--> Search & replace name ... ${green}done${txtreset}"
+
+# ----------------------------------------------------------------
+# Search & Replace ID
+# ----------------------------------------------------------------
+
+# PHP files
+find "$basedir_all_files" -name '*.php' -type f -exec perl -p -i -e "s|$default_id|$id|g" {} \;
+
+# style.css
+find "$basedir" -name 'style.css' -type f -exec perl -p -i -e "s|$default_id|$id|g" {} \;
+
+# style.scss
+find "$sassdir" -name 'style.scss' -type f -exec perl -p -i -e "s|$default_id|$id|g" {} \;
+
+# package.json
+find "$basedir" -name 'package.json' -type f -exec perl -p -i -e "s|$default_id|$id|g" {} \;
+
+echo "--> Search & replace id ..... ${green}done${txtreset}"
+
+# ----------------------------------------------------------------
+# Change author
+# ----------------------------------------------------------------
+
+# PHP files
+find "$basedir_all_files" -name '*.php' -type f -exec perl -p -i -e "s|$default_author|$author|g" {} \;
+
+# style.css
+find "$basedir" -name 'style.css' -type f -exec perl -p -i -e "s|$default_author|$author|g" {} \;
+
+# style.scss
+find "$sassdir" -name 'style.scss' -type f -exec perl -p -i -e "s|$default_author|$author|g" {} \;
+
+# package.json
+find "$basedir" -name 'package.json' -type f -exec perl -p -i -e "s|$default_author|$author|g" {} \;
+
+echo "--> Change author name .............. ${green}done${txtreset}"
+
+# ----------------------------------------------------------------
+# Change author URL
+# ----------------------------------------------------------------
+
+# PHP files
+find "$basedir_all_files" -name '*.php' -type f -exec perl -p -i -e "s|$default_author_url|$author_url|g" {} \;
+
+# style.css
+find "$basedir" -name 'style.css' -type f -exec perl -p -i -e "s|$default_author_url|$author_url|g" {} \;
+
+# style.scss
+find "$sassdir" -name 'style.scss' -type f -exec perl -p -i -e "s|$default_author_url|$author_url|g" {} \;
+
+# package.json
+find "$basedir" -name 'package.json' -type f -exec perl -p -i -e "s|$default_author_url|$author_url|g" {} \;
+
+echo "--> Change author URL .............. ${green}done${txtreset}"
+
+# ----------------------------------------------------------------
+# Change package
+# ----------------------------------------------------------------
+
+# PHP files
+find "$basedir_all_files" -name '*.php' -type f -exec perl -p -i -e "s|$default_package|$package|g" {} \;
+
+# style.css
+find "$basedir" -name 'style.css' -type f -exec perl -p -i -e "s|$default_package|$package|g" {} \;
+
+# style.scss
+find "$sassdir" -name 'style.scss' -type f -exec perl -p -i -e "s|$default_package|$package|g" {} \;
+
+# package.json
+find "$basedir" -name 'package.json' -type f -exec perl -p -i -e "s|$default_package|$package|g" {} \;
+
+echo "--> Change package name .............. ${green}done${txtreset}"
+
+# ----------------------------------------------------------------
+# Change dev URL
+# ----------------------------------------------------------------
+
+# Gulpfile.js
+find "$basedir" -name 'Gulpfile.js' -type f -exec perl -p -i -e "s|$default_url|$url|g" {} \;
+
+# gulpfile.js
+find "$basedir" -name 'gulpfile.js' -type f -exec perl -p -i -e "s|$default_url|$url|g" {} \;
+
+echo "--> Change url .............. ${green}done${txtreset}"
+
+echo "--> ${green}Setup complete!${txtreset}"
+
+# echo "--> setup.sh removed"
+# rm "$setup_script"
diff --git a/single-event.php b/single-event.php
new file mode 100755
index 0000000..6d258f8
--- /dev/null
+++ b/single-event.php
@@ -0,0 +1,332 @@
+ element
+add_filter( 'genesis_attr_entry-content', 'my_attr_content' );
+function my_attr_content( $attr ) {
+ $attr['id'] .= 'content';
+ return $attr;
+}
+
+
+//add_action( 'genesis_entry_header', 'ycb_event_meta', 5);
+//add_action( 'genesis_entry_header', 'ycb_event_register_button', 10);
+
+function ycb_event_meta() {
+
+ global $post;
+ $EM_Event = em_get_event($post->ID, 'post_id');
+
+ echo '
';
+
+ $event_start_date = get_post_meta( get_the_ID(), _event_start_date ,true);
+
+ if ( $event_start_date ) {
+ $format_in = 'Y-m-d'; // the format your value is saved in (set in the field options)
+ $format_out = 'd/m/Y'; // the format you want to end up with
+
+ $event_start_date = DateTime::createFromFormat($format_in, $event_start_date);
+ echo ''. $event_start_date->format( $format_out ) .'';
+ }
+ echo ' | ';
+ echo $EM_Event->output('#_LOCATIONTOWN');
+ echo '
+
Start by doing what's necessary, then do what's possible.<\/p>","column-classes":"two-thirds","column-classes-first":true},"custom_html-9":{"title":"","content":"