├── .gitignore ├── Dockerfile ├── LICENSE ├── MAINTAINERS ├── README.md ├── config ├── ec2-config-template.json └── ec2-config.json ├── content ├── mu-plugins │ └── custom.php ├── themes │ └── Parallax-One │ │ ├── 404.php │ │ ├── CHANGELOG.md │ │ ├── archive-download.php │ │ ├── archive.php │ │ ├── class-tgm-plugin-activation.php │ │ ├── comments.php │ │ ├── content-archive-download.php │ │ ├── content-contact.php │ │ ├── content-none.php │ │ ├── content-page.php │ │ ├── content-search.php │ │ ├── content-single-download.php │ │ ├── content-single.php │ │ ├── content.php │ │ ├── css │ │ ├── admin-style.css │ │ ├── bootstrap.min.css │ │ ├── custom-editor-style.css │ │ └── ielt9.css │ │ ├── fonts │ │ ├── stamp-icons.eot │ │ ├── stamp-icons.svg │ │ ├── stamp-icons.ttf │ │ └── stamp-icons.woff │ │ ├── footer.php │ │ ├── front-page.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── home.php │ │ ├── images │ │ ├── about-us.png │ │ ├── background-images │ │ │ ├── background.jpg │ │ │ ├── background_thumbnail.jpg │ │ │ └── parallax-img │ │ │ │ └── parallax-img1.jpg │ │ ├── background1.png │ │ ├── background2.png │ │ ├── clients │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ └── client-no-image.jpg │ │ ├── companies │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ └── 6.png │ │ ├── gray-lines.png │ │ ├── loader-blue.gif │ │ ├── logo-2.png │ │ ├── logo-nav.png │ │ ├── no-thumbnail-latest-news.jpg │ │ ├── no-thumbnail-mobile.jpg │ │ ├── no-thumbnail.jpg │ │ ├── team │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ └── default.png │ │ ├── tr-btn.png │ │ └── transparency-grid.png │ │ ├── inc │ │ ├── admin │ │ │ ├── class-remote-notification-client.php │ │ │ └── welcome-screen │ │ │ │ ├── css │ │ │ │ ├── welcome.css │ │ │ │ └── welcome_customizer.css │ │ │ │ ├── img │ │ │ │ └── ajax-loader.gif │ │ │ │ ├── js │ │ │ │ ├── welcome.js │ │ │ │ └── welcome_customizer.js │ │ │ │ ├── sections │ │ │ │ ├── changelog.php │ │ │ │ ├── free_pro.php │ │ │ │ ├── getting-started.php │ │ │ │ └── github.php │ │ │ │ └── welcome-screen.php │ │ ├── class │ │ │ ├── parallax-one-alpha-control.php │ │ │ ├── parallax-one-general-control.php │ │ │ └── parallax-one-text-control.php │ │ ├── customizer.php │ │ ├── extras.php │ │ ├── hooks.php │ │ ├── jetpack.php │ │ └── template-tags.php │ │ ├── index.php │ │ ├── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── custom.all.js │ │ ├── custom.home.js │ │ ├── customizer.js │ │ ├── html5shiv.js │ │ ├── html5shiv.min.js │ │ ├── jquery.ddslick.js │ │ ├── parallax_one_customizer.js │ │ ├── plugin.home.js │ │ └── skip-link-focus-fix.js │ │ ├── languages │ │ ├── fr_FR.mo │ │ ├── fr_FR.po │ │ ├── parallax-one.pot │ │ ├── pl_PL.mo │ │ ├── pl_PL.po │ │ ├── pt_BR.mo │ │ ├── pt_BR.po │ │ ├── ru_RU.mo │ │ └── ru_RU.po │ │ ├── page.php │ │ ├── readme.md │ │ ├── rtl.css │ │ ├── screenshot.png │ │ ├── search.php │ │ ├── sections │ │ ├── parallax_one_contact_info_section.php │ │ ├── parallax_one_happy_customers_section.php │ │ ├── parallax_one_header_section.php │ │ ├── parallax_one_latest_news_section.php │ │ ├── parallax_one_logos_section.php │ │ ├── parallax_one_map_section.php │ │ ├── parallax_one_our_services_section.php │ │ ├── parallax_one_our_story_section.php │ │ ├── parallax_one_our_team_section.php │ │ └── parallax_one_ribbon_section.php │ │ ├── sidebar.php │ │ ├── single-download.php │ │ ├── single.php │ │ ├── style.css │ │ ├── template-blog.php │ │ ├── template-contact.php │ │ ├── template-fullwidth.php │ │ ├── vendor │ │ └── themeisle │ │ │ ├── inc │ │ │ ├── base.php │ │ │ ├── license.php │ │ │ └── log.php │ │ │ ├── load.php │ │ │ └── start.php │ │ └── wpml-config.xml └── uploads │ └── 2016 │ └── 09 │ ├── aws-1-1024x649.jpg │ ├── aws-1-150x150.jpg │ ├── aws-1-268x273.jpg │ ├── aws-1-300x190.jpg │ ├── aws-1-500x233.jpg │ ├── aws-1-60x62.jpg │ ├── aws-1-730x340.jpg │ ├── aws-1-75x75.jpg │ ├── aws-1-768x487.jpg │ ├── aws-1.jpg │ ├── docker-150x150.jpg │ ├── docker-268x273.jpg │ ├── docker-300x186.jpg │ ├── docker-500x233.jpg │ ├── docker-60x62.jpg │ ├── docker-730x340.jpg │ ├── docker-75x75.jpg │ ├── docker-768x475.jpg │ ├── docker.jpg │ ├── git-150x150.jpg │ ├── git-268x273.jpg │ ├── git-300x186.jpg │ ├── git-500x233.jpg │ ├── git-60x62.jpg │ ├── git-730x340.jpg │ ├── git-75x75.jpg │ ├── git-768x475.jpg │ ├── git.jpg │ ├── header-1024x162.jpg │ ├── header-150x150.jpg │ ├── header-268x273.jpg │ ├── header-300x48.jpg │ ├── header-500x233.jpg │ ├── header-60x62.jpg │ ├── header-730x340.jpg │ ├── header-75x75.jpg │ ├── header-768x122.jpg │ ├── header.jpg │ ├── logo-1-150x91.png │ ├── logo-1-268x91.png │ ├── logo-1-300x57.png │ ├── logo-1-60x62.png │ ├── logo-1-75x75.png │ ├── logo-1.png │ ├── logo-150x91.png │ ├── logo-268x91.png │ ├── logo-300x57.png │ ├── logo-60x62.png │ ├── logo-75x75.png │ ├── logo.png │ ├── multi-server-150x150.jpg │ ├── multi-server-268x273.jpg │ ├── multi-server-300x186.jpg │ ├── multi-server-500x233.jpg │ ├── multi-server-60x62.jpg │ ├── multi-server-730x340.jpg │ ├── multi-server-75x75.jpg │ ├── multi-server-768x476.jpg │ ├── multi-server.jpg │ ├── plesk_service_icon_rgb-150x150.png │ ├── plesk_service_icon_rgb-268x273.png │ ├── plesk_service_icon_rgb-300x300.png │ ├── plesk_service_icon_rgb-401x233.png │ ├── plesk_service_icon_rgb-401x340.png │ ├── plesk_service_icon_rgb-60x62.png │ ├── plesk_service_icon_rgb-75x75.png │ └── plesk_service_icon_rgb.png ├── docker ├── custom.sh ├── data.sql ├── docker-entrypoint.sh ├── mu-21d059a5-6614bceb-ed85e357-bd885a86 ├── nginx-site.conf ├── nginx.conf └── php-opcache.ini ├── manage_wordpress.sh └── pleskwp.ini /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | wp-config.php 3 | wp-content/advanced-cache.php 4 | wp-content/backup-db/ 5 | wp-content/backups/ 6 | wp-content/blogs.dir/ 7 | wp-content/cache/ 8 | wp-content/upgrade/ 9 | wp-content/uploads/ 10 | wp-content/wp-cache-config.php 11 | wp-content/plugins/hello.php 12 | 13 | /.htaccess 14 | /license.txt 15 | /readme.html 16 | /sitemap.xml 17 | /sitemap.xml.gz 18 | 19 | 20 | .DS_Store 21 | 22 | ec2-user-data.sh 23 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM debian:testing 2 | 3 | MAINTAINER Jan Loeffler 4 | 5 | # Upgrade everything 6 | RUN apt-get update && apt-get upgrade -y 7 | 8 | # Basics software 9 | RUN apt-get install -y wget curl mysql-client nginx 10 | 11 | # PHP 12 | RUN apt-get update && apt-get -y install \ 13 | php7.0 \ 14 | php7.0-cgi \ 15 | php7.0-cli \ 16 | php7.0-common \ 17 | php7.0-curl \ 18 | php7.0-dev \ 19 | php7.0-gd \ 20 | php7.0-gmp \ 21 | php7.0-json \ 22 | php7.0-ldap \ 23 | php7.0-memcached \ 24 | php7.0-mysql \ 25 | php7.0-odbc \ 26 | php7.0-opcache \ 27 | php7.0-pspell \ 28 | php7.0-readline \ 29 | php7.0-sqlite3 \ 30 | php7.0-tidy \ 31 | php7.0-xmlrpc \ 32 | php7.0-xsl \ 33 | php7.0-fpm \ 34 | php7.0-intl \ 35 | php7.0-zip \ 36 | php7.0-mcrypt && apt-get clean 37 | 38 | RUN mkdir /run/php 39 | 40 | # nginx site conf 41 | COPY docker/nginx.conf /etc/nginx/nginx.conf 42 | COPY docker/nginx-site.conf /etc/nginx/sites-available/default 43 | 44 | # Install WP-CLI 45 | RUN curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar \ 46 | && chmod +x wp-cli.phar \ 47 | && mv wp-cli.phar /usr/local/bin/wp 48 | 49 | # Download WordPress 50 | RUN wp core download --path=/usr/src/wordpress --allow-root 51 | 52 | # Integrate user data 53 | COPY content /usr/src/wordpress/wp-content 54 | COPY docker/custom.sh /custom.sh 55 | COPY docker/data.sql /data.sql 56 | COPY docker/mu-21d059a5-6614bceb-ed85e357-bd885a86 /usr/src/wordpress 57 | COPY docker/php-opcache.ini /etc/php/7.0/fpm/conf.d/10-opcache.ini 58 | 59 | # Fix user permissions 60 | RUN chown -R www-data:www-data /usr/src/wordpress 61 | 62 | # Add New Relic repo 63 | RUN echo 'deb http://apt.newrelic.com/debian/ newrelic non-free' | tee /etc/apt/sources.list.d/newrelic.list \ 64 | && wget -O- https://download.newrelic.com/548C16BF.gpg | apt-key add - 65 | 66 | COPY docker/docker-entrypoint.sh /entrypoint.sh 67 | 68 | # grr, ENTRYPOINT resets CMD now 69 | ENTRYPOINT ["/entrypoint.sh"] 70 | 71 | WORKDIR /usr/src/wordpress 72 | VOLUME ['/usr/src/wordpress/wp-content'] 73 | 74 | EXPOSE 80 75 | EXPOSE 443 76 | CMD ["nginx", "-g", "daemon off;"] 77 | -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- 1 | Jan Löffler 2 | Viktor Vogel 3 | -------------------------------------------------------------------------------- /config/ec2-config-template.json: -------------------------------------------------------------------------------- 1 | { 2 | "DryRun": true, 3 | "ImageId": "", 4 | "MinCount": 0, 5 | "MaxCount": 0, 6 | "KeyName": "", 7 | "SecurityGroups": [ 8 | "" 9 | ], 10 | "SecurityGroupIds": [ 11 | "" 12 | ], 13 | "UserData": "", 14 | "InstanceType": "", 15 | "Placement": { 16 | "AvailabilityZone": "", 17 | "GroupName": "", 18 | "Tenancy": "", 19 | "HostId": "", 20 | "Affinity": "" 21 | }, 22 | "KernelId": "", 23 | "RamdiskId": "", 24 | "BlockDeviceMappings": [ 25 | { 26 | "VirtualName": "", 27 | "DeviceName": "", 28 | "Ebs": { 29 | "SnapshotId": "", 30 | "VolumeSize": 0, 31 | "DeleteOnTermination": true, 32 | "VolumeType": "", 33 | "Iops": 0, 34 | "Encrypted": true 35 | }, 36 | "NoDevice": "" 37 | } 38 | ], 39 | "Monitoring": { 40 | "Enabled": true 41 | }, 42 | "SubnetId": "", 43 | "DisableApiTermination": true, 44 | "InstanceInitiatedShutdownBehavior": "", 45 | "PrivateIpAddress": "", 46 | "ClientToken": "", 47 | "AdditionalInfo": "", 48 | "NetworkInterfaces": [ 49 | { 50 | "NetworkInterfaceId": "", 51 | "DeviceIndex": 0, 52 | "SubnetId": "", 53 | "Description": "", 54 | "PrivateIpAddress": "", 55 | "Groups": [ 56 | "" 57 | ], 58 | "DeleteOnTermination": true, 59 | "PrivateIpAddresses": [ 60 | { 61 | "PrivateIpAddress": "", 62 | "Primary": true 63 | } 64 | ], 65 | "SecondaryPrivateIpAddressCount": 0, 66 | "AssociatePublicIpAddress": true 67 | } 68 | ], 69 | "IamInstanceProfile": { 70 | "Arn": "", 71 | "Name": "" 72 | }, 73 | "EbsOptimized": true 74 | } 75 | -------------------------------------------------------------------------------- /config/ec2-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "UserData": "ec2-user-data.sh" 3 | } 4 | -------------------------------------------------------------------------------- /content/mu-plugins/custom.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 |
20 | 21 |
22 |
23 | 24 | 25 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/archive-download.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 |
21 | 22 |
23 |
id="main" class="site-main" role="main"> 24 | 25 | 26 | 27 | 33 | 34 | 35 | 36 | 37 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 |
56 |
57 | 58 |
59 |
60 | 61 | 62 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/archive.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 |
24 | 25 |
26 |
id="main" class="site-main" role="main"> 27 | 28 | 29 | 30 | 36 | 37 | 38 | 39 | 40 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 |
59 |
60 | 61 | 62 | 63 |
64 | 65 |
66 | 67 | 68 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/comments.php: -------------------------------------------------------------------------------- 1 | 20 | 21 |
22 | 23 | 24 | 25 | 26 |

27 | ' . get_the_title() . '' ); 30 | ?> 31 |

32 | 33 | 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?> 34 | 43 | 44 | 45 |
    46 | 'ol', 49 | 'short_ping' => true, 50 | 'callback' => 'parallax_one_comment', 51 | 'avatar_size' => 60 52 | ) ); 53 | ?> 54 |
55 | 56 | 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?> 57 | 66 | 67 | 68 | 69 | 70 | 74 |

75 | 76 | 77 | 78 | 79 |
80 | 81 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/content-archive-download.php: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |
9 | 20 | 21 | 22 |
23 | 24 |
25 | get_the_ID() ) ); ?> 26 |
27 |
-------------------------------------------------------------------------------- /content/themes/Parallax-One/content-contact.php: -------------------------------------------------------------------------------- 1 | 6 |
> 7 | 8 |
9 | 10 |
11 | ', '' ); ?> 12 |
13 |
14 |
15 | 16 |
17 | 18 | 21 |
22 | 23 |
24 | '; 27 | echo do_shortcode( $parallax_one_contact_form_shortcode); 28 | echo '
'; 29 | } 30 | ?> 31 | 32 |
33 | ', '' ); ?> 34 |
35 | 36 |
37 | 38 | 39 | 40 | 41 | '; 45 | echo do_shortcode( $parallax_one_contact_map_shortcode); 46 | echo ''; 47 | } 48 | ?> 49 | 50 | 51 |
-------------------------------------------------------------------------------- /content/themes/Parallax-One/content-none.php: -------------------------------------------------------------------------------- 1 | 10 | 11 |
12 | 15 | 16 |
17 | 18 | 19 |

Get started here.', 'parallax-one' ), esc_url( admin_url( 'post-new.php' ) ) ); ?>

20 | 21 | 22 | 23 |

24 | 25 | 26 | 27 | 28 |

29 | 30 | 31 | 32 |
33 |
34 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/content-page.php: -------------------------------------------------------------------------------- 1 | 8 | 9 |
> 10 | 11 | 12 | 15 |
16 | ', '' ); ?> 17 |
18 |
19 |
20 | 21 | 22 |
23 | 24 | '', 28 | ) ); 29 | ?> 30 |
31 | 32 |
33 | ', '' ); ?> 34 |
35 | 36 |
37 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/content-search.php: -------------------------------------------------------------------------------- 1 | 10 | 11 |
> 12 | 13 |
14 | 15 |
16 | 17 | 18 | 21 | 26 | 27 | 28 | <?php the_title_attribute(); ?> 29 | 30 | 33 | 34 | 35 | <?php the_title_attribute(); ?> 36 | 37 | 38 | 39 | 40 | 44 |
45 | 46 | 75 | 76 | ', esc_url( get_permalink() ) ), '' ); ?> 77 |
78 |
79 | 80 |
81 |
82 | post_content, ''); 84 | if($ismore) : the_content(); 85 | else : the_excerpt(); 86 | endif; 87 | ?> 88 | 89 | '', 93 | ) ); 94 | ?> 95 |
96 | 97 |
98 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/content-single-download.php: -------------------------------------------------------------------------------- 1 | 6 | 7 |
> 8 |
9 | ', '' ); ?> 10 |
11 |
12 |
13 | 14 |
15 | 16 |
17 | 23 |
24 | 25 | 26 | '', 30 | ) ); 31 | ?> 32 |
33 | 34 |
35 | 36 |
37 |
38 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/content-single.php: -------------------------------------------------------------------------------- 1 | 6 | 7 |
> 8 |
9 | ', '' ); ?> 10 |
11 |
12 | 13 | 26 |
27 | 28 |
29 | 30 | '', 34 | ) ); 35 | ?> 36 |
37 | 38 |
39 | 40 |
41 |
42 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/content.php: -------------------------------------------------------------------------------- 1 | 6 | 7 |
title=""> 8 | 9 |
10 | 11 |
12 | 13 | 14 | 17 | 22 | 23 | 24 | <?php the_title_attribute(); ?> 25 | 26 | 29 | 30 | 31 | <?php the_title_attribute(); ?> 32 | 33 | 34 | 35 | 36 | 40 | 41 | '; 48 | echo '
' . esc_html__( 'Rating', 'parallax-one' ) . '
'; 49 | echo '
' . ( floor( $review_score ) / 10 ) . '
'; 50 | echo '
'; 51 | } 52 | } 53 | } 54 | ?> 55 | 56 | 57 | 58 | 81 | 82 | ', esc_url( get_permalink() ) ), '' ); ?> 83 |
84 |
85 | 86 |
87 |
88 | post_content, ''); 90 | if($ismore) : the_content( sprintf( esc_html__('Read more %s ...','parallax-one'), ''.esc_html__('about ', 'parallax-one').get_the_title().'' ) ); 91 | else : the_excerpt(); 92 | endif; 93 | ?> 94 | 95 | '', 99 | ) ); 100 | ?> 101 |
102 | 103 |
104 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/css/custom-editor-style.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-family: 'Open Sans', Helvetica Neue, Sans-serif; 3 | color:#000; 4 | } 5 | 6 | a { 7 | text-decoration: none; 8 | -webkit-transition: all ease 0.25s; 9 | transition: all ease 0.25s; 10 | color: #008ed6; 11 | } 12 | 13 | a:hover { 14 | text-decoration: none; 15 | color: #008ed6; 16 | 17 | } 18 | 19 | a:focus { 20 | outline: 1px dotted #008ed6; 21 | text-decoration: none; 22 | } 23 | 24 | /* HEADINGS */ 25 | h1, 26 | h2 { 27 | font-family: 'Cabin', Helvetica Neue, Sans-serif; 28 | font-weight: 400; 29 | } 30 | 31 | h1 { 32 | font-size: 36px; 33 | line-height: 40px; 34 | -ms-word-wrap: break-word; 35 | word-wrap: break-word; 36 | } 37 | 38 | h2 { 39 | font-size: 30px; 40 | line-height: 34px; 41 | -ms-word-wrap: break-word; 42 | word-wrap: break-word; 43 | } 44 | 45 | h3 { 46 | font-size: 24px; 47 | line-height: 28px; 48 | -ms-word-wrap: break-word; 49 | word-wrap: break-word; 50 | } 51 | 52 | h4 { 53 | font-size: 18px; 54 | line-height: 22px; 55 | -ms-word-wrap: break-word; 56 | word-wrap: break-word; 57 | } 58 | 59 | h5 { 60 | font-size: 14px; 61 | line-height: 18px; 62 | -ms-word-wrap: break-word; 63 | word-wrap: break-word; 64 | } 65 | 66 | blockquote:before, 67 | blockquote:after, 68 | q:before, 69 | q:after { 70 | content: ""; 71 | } 72 | 73 | blockquote, 74 | q { 75 | quotes: "" ""; 76 | } 77 | 78 | hr { 79 | background-color: #ccc; 80 | border: 0; 81 | height: 1px; 82 | margin-bottom: 1.5em; 83 | } 84 | 85 | ul, 86 | ol { 87 | margin: 0 0 1.5em 0; 88 | padding-left: 20px; 89 | } 90 | 91 | ul { 92 | list-style: disc; 93 | } 94 | 95 | ol { 96 | list-style: decimal; 97 | } 98 | 99 | li > ul, 100 | li > ol { 101 | margin-bottom: 0; 102 | margin-left: 1.5em; 103 | } 104 | 105 | dt { 106 | font-weight: bold; 107 | } 108 | 109 | dd { 110 | margin: 0 1.5em 1.5em; 111 | } 112 | 113 | img { 114 | -ms-interpolation-mode: bicubic; 115 | border: 0; 116 | height: auto; 117 | max-width: 100%; 118 | vertical-align: middle; 119 | } 120 | 121 | table { 122 | margin: 0 0 1.5em; 123 | width: 100%; 124 | } 125 | table, 126 | th, 127 | td { 128 | border: 1px solid #eaeaea; 129 | } 130 | 131 | th, 132 | td { 133 | padding: 0.4em; 134 | } 135 | 136 | p { 137 | margin: 0 0 10px; 138 | color: #666666; 139 | } 140 | 141 | dfn, 142 | cite, 143 | em, 144 | i { 145 | font-style: italic; 146 | } 147 | 148 | blockquote { 149 | margin: 0 0 20px; 150 | border-left: 5px solid #eee; 151 | padding: 15px 20px; 152 | font-size: 17.5px; 153 | line-height: 24px; 154 | margin-bottom: 1.5em; 155 | font-weight: 300; 156 | } 157 | 158 | blockquote p { 159 | font-weight: 300; 160 | color: #313131; 161 | } 162 | 163 | address { 164 | margin: 0 0 1.5em; 165 | } 166 | 167 | pre { 168 | background: #eee; 169 | font-family: "Courier 10 Pitch", Courier, monospace; 170 | font-size: 15px; 171 | font-size: 0.9375rem; 172 | line-height: 1.6; 173 | margin-bottom: 1.6em; 174 | max-width: 100%; 175 | overflow: auto; 176 | padding: 1.6em; 177 | background: #FAFAFA; 178 | border: 1px solid #E7E7E7; 179 | } 180 | 181 | code, 182 | kbd, 183 | tt, 184 | var { 185 | font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace; 186 | font-size: 15px; 187 | font-size: 0.9375rem; 188 | } 189 | 190 | abbr, 191 | acronym { 192 | border-bottom: 1px dotted #666; 193 | cursor: help; 194 | } 195 | 196 | mark, 197 | ins { 198 | background: #fff9c0; 199 | text-decoration: none; 200 | } 201 | 202 | big { 203 | font-size: 125%; 204 | } 205 | 206 | button, 207 | input[type="button"], 208 | input[type="reset"], 209 | input[type="submit"] { 210 | background-image: url(images/tr-btn.png); 211 | background-repeat: repeat-x; 212 | background-color: #00a5f9; 213 | background-size: contain; 214 | text-shadow: none; 215 | border: none; 216 | -webkit-border-radius: 3px; 217 | -moz-border-radius: 3px; 218 | border-radius: 3px; 219 | text-transform: uppercase; 220 | letter-spacing: 1px; 221 | font-size: 12px; 222 | line-height: 1.6; 223 | border: none; 224 | padding: 10px 30px 10px 30px; 225 | color: #ffffff; 226 | -webkit-transition: none; 227 | transition: none; 228 | font-weight: bold; 229 | } 230 | 231 | button:hover, 232 | input[type="button"]:hover, 233 | input[type="reset"]:hover, 234 | input[type="submit"]:hover { 235 | background: #008ed6; 236 | border-color: inherit; 237 | 238 | } 239 | 240 | button:focus, 241 | input[type="button"]:focus, 242 | input[type="reset"]:focus, 243 | input[type="submit"]:focus, 244 | button:active, 245 | input[type="button"]:active, 246 | input[type="reset"]:active, 247 | input[type="submit"]:active { 248 | border-color: #aaa #bbb #bbb; 249 | box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15); 250 | } 251 | 252 | input[type="text"], 253 | input[type="email"], 254 | input[type="url"], 255 | input[type="password"], 256 | input[type="search"], 257 | input[type="tel"], 258 | input[type="time"], 259 | input[type="week"], 260 | input[type="month"], 261 | input[type="datetime-local"], 262 | input[type="datetime"], 263 | input[type="date"], 264 | input[type="color"], 265 | textarea, 266 | select { 267 | color: #666; 268 | border: 1px solid #dedede; 269 | -webkit-border-radius: 3px; 270 | -moz-border-radius: 3px; 271 | border-radius: 3px; 272 | padding: 5px; 273 | } 274 | 275 | input[type="text"]:focus, 276 | input[type="email"]:focus, 277 | input[type="url"]:focus, 278 | input[type="password"]:focus, 279 | input[type="search"]:focus, 280 | textarea:focus { 281 | color: #111; 282 | } 283 | 284 | 285 | textarea { 286 | width: 100%; 287 | height: auto; 288 | min-height: 150px; 289 | padding: 10px; 290 | } 291 | 292 | input[type="date"], input[type="time"], input[type="datetime-local"], input[type="month"]{ 293 | line-height: normal; 294 | } 295 | 296 | label{ 297 | vertical-align: middle; 298 | padding-right: 5px; 299 | } 300 | 301 | code { 302 | padding: 2px 4px; 303 | font-size: 90%; 304 | color: #c7254e; 305 | background-color: #f9f2f4; 306 | border-radius: 4px; 307 | } 308 | 309 | code, kbd, tt, var { 310 | font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace; 311 | font-size: 15px; 312 | font-size: 0.9375rem; 313 | } -------------------------------------------------------------------------------- /content/themes/Parallax-One/css/ielt9.css: -------------------------------------------------------------------------------- 1 | .preloader { 2 | display: none; 3 | } -------------------------------------------------------------------------------- /content/themes/Parallax-One/fonts/stamp-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/fonts/stamp-icons.eot -------------------------------------------------------------------------------- /content/themes/Parallax-One/fonts/stamp-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/fonts/stamp-icons.ttf -------------------------------------------------------------------------------- /content/themes/Parallax-One/fonts/stamp-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/fonts/stamp-icons.woff -------------------------------------------------------------------------------- /content/themes/Parallax-One/footer.php: -------------------------------------------------------------------------------- 1 | 9 |
10 |
11 | 45 | 46 | 125 | Parallax One '.esc_html__('powered by ','parallax-one').''.esc_html__('WordPress','parallax-one').'
');?> 126 | 127 |
128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/front-page.php: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 29 | 30 |
31 | 32 | 40 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/header.php: -------------------------------------------------------------------------------- 1 | section and everything up till
6 | * 7 | * @package parallax-one 8 | */ 9 | ?> 10 | 11 | class="no-js"> 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | dir=""> 23 | 24 |
25 |
26 |
27 |
28 |
29 | 30 | 31 | 34 | '; 45 | echo '
 
'; 46 | echo '
'; 47 | 48 | endif; 49 | 50 | endif; ?> 51 | 52 | 53 | 56 | 57 | 58 | 22 | 23 | 24 | 25 | 26 |
27 | 28 |
29 |
30 |
id="main" class="site-main" role="main"> 31 | 32 | 33 | 34 | 35 | 36 | 37 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 |
56 |
57 | 58 | 59 | 60 |
61 | 62 |
63 | 64 | 65 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/images/about-us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/images/about-us.png -------------------------------------------------------------------------------- /content/themes/Parallax-One/images/background-images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/images/background-images/background.jpg -------------------------------------------------------------------------------- /content/themes/Parallax-One/images/background-images/background_thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/images/background-images/background_thumbnail.jpg -------------------------------------------------------------------------------- /content/themes/Parallax-One/images/background-images/parallax-img/parallax-img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/images/background-images/parallax-img/parallax-img1.jpg -------------------------------------------------------------------------------- /content/themes/Parallax-One/images/background1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/images/background1.png -------------------------------------------------------------------------------- /content/themes/Parallax-One/images/background2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/images/background2.png -------------------------------------------------------------------------------- /content/themes/Parallax-One/images/clients/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/images/clients/1.jpg -------------------------------------------------------------------------------- /content/themes/Parallax-One/images/clients/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/images/clients/2.jpg -------------------------------------------------------------------------------- /content/themes/Parallax-One/images/clients/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/images/clients/3.jpg -------------------------------------------------------------------------------- /content/themes/Parallax-One/images/clients/client-no-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/images/clients/client-no-image.jpg -------------------------------------------------------------------------------- /content/themes/Parallax-One/images/companies/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/images/companies/1.png -------------------------------------------------------------------------------- /content/themes/Parallax-One/images/companies/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/images/companies/2.png -------------------------------------------------------------------------------- /content/themes/Parallax-One/images/companies/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/images/companies/3.png -------------------------------------------------------------------------------- /content/themes/Parallax-One/images/companies/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/images/companies/4.png -------------------------------------------------------------------------------- /content/themes/Parallax-One/images/companies/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/images/companies/5.png -------------------------------------------------------------------------------- /content/themes/Parallax-One/images/companies/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/images/companies/6.png -------------------------------------------------------------------------------- /content/themes/Parallax-One/images/gray-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/images/gray-lines.png -------------------------------------------------------------------------------- /content/themes/Parallax-One/images/loader-blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/images/loader-blue.gif -------------------------------------------------------------------------------- /content/themes/Parallax-One/images/logo-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/images/logo-2.png -------------------------------------------------------------------------------- /content/themes/Parallax-One/images/logo-nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/images/logo-nav.png -------------------------------------------------------------------------------- /content/themes/Parallax-One/images/no-thumbnail-latest-news.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/images/no-thumbnail-latest-news.jpg -------------------------------------------------------------------------------- /content/themes/Parallax-One/images/no-thumbnail-mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/images/no-thumbnail-mobile.jpg -------------------------------------------------------------------------------- /content/themes/Parallax-One/images/no-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/images/no-thumbnail.jpg -------------------------------------------------------------------------------- /content/themes/Parallax-One/images/team/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/images/team/1.jpg -------------------------------------------------------------------------------- /content/themes/Parallax-One/images/team/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/images/team/2.jpg -------------------------------------------------------------------------------- /content/themes/Parallax-One/images/team/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/images/team/3.jpg -------------------------------------------------------------------------------- /content/themes/Parallax-One/images/team/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/images/team/default.png -------------------------------------------------------------------------------- /content/themes/Parallax-One/images/tr-btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/images/tr-btn.png -------------------------------------------------------------------------------- /content/themes/Parallax-One/images/transparency-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/images/transparency-grid.png -------------------------------------------------------------------------------- /content/themes/Parallax-One/inc/admin/welcome-screen/css/welcome.css: -------------------------------------------------------------------------------- 1 | .parallax-one-nav-tabs { 2 | margin-bottom: 0; 3 | } 4 | .parallax-one-nav-tabs:after { 5 | clear: both; 6 | display: table; 7 | content: " "; 8 | } 9 | .parallax-one-nav-tabs > li { 10 | float: left; 11 | margin-bottom: -1px; 12 | display: block; 13 | } 14 | .parallax-one-nav-tabs > li > a { 15 | border: 1px solid transparent; 16 | border-radius: 4px 4px 0 0; 17 | display: block; 18 | padding: 10px 15px; 19 | text-decoration: none; 20 | } 21 | .parallax-one-nav-tabs > li.active > a, .parallax-one-nav-tabs > li.active > a:focus, .parallax-one-nav-tabs > li.active > a:hover { 22 | color: #555; 23 | background-color: #fff; 24 | border: 1px solid #ddd; 25 | border-bottom-color: transparent; 26 | } 27 | .parallax-one-nav-tabs > li.parallax-one-w-red-tab > a { 28 | color: red; 29 | font-weight: bold; 30 | } 31 | .parallax-one-tab-content { 32 | background-color: #fff; 33 | border-bottom: 1px solid #ddd; 34 | border-right: 1px solid #ddd; 35 | border-left: 1px solid #ddd; 36 | width: 960px; 37 | float: left; 38 | } 39 | .parallax-one-tab-content > .tab-pane { 40 | display: none; 41 | } 42 | .parallax-one-tab-content > .active { 43 | display: block; 44 | } 45 | 46 | .parallax-one-tab-pane { 47 | padding: 30px; 48 | } 49 | .parallax-one-tab-pane { 50 | display: none; 51 | } 52 | .parallax-one-tab-pane.active { 53 | display: block; 54 | } 55 | 56 | #parallax-one-theme-version { 57 | font-size: 50%; 58 | padding: 10px; 59 | background: #ccc; 60 | } 61 | #parallax-one-w-screenshot { 62 | border: 1px solid #ccc; 63 | margin-top: 30px; 64 | } 65 | .parallax-one-w-activated { 66 | cursor:not-allowed !important; 67 | } 68 | .prallax-one-tab-pane-half { 69 | width: 45%; 70 | float:left; 71 | border-left: 1px solid #ccc; 72 | padding-left: 20px; 73 | margin-top: 15px; 74 | padding-right: 20px; 75 | margin-bottom: 15px; 76 | } 77 | .parallax-one-tab-content img { 78 | max-width: 100%; 79 | } 80 | .prallax-one-tab-pane-first-half { 81 | border-left: none; 82 | } 83 | .prallax-one-tab-pane-center { 84 | text-align: center; 85 | margin-bottom: 30px; 86 | margin-top: 30px; 87 | } 88 | .parallax-one-welcome-title { 89 | font-size: 32px; 90 | } 91 | .parallax-one-clear { 92 | clear: both; 93 | } 94 | .parallax-one-child-theme-container { 95 | position: relative; 96 | } 97 | .parallax-one-child-theme-description { 98 | position: absolute; 99 | top: 100%; 100 | left: 0; 101 | overflow: auto; 102 | box-sizing: border-box; 103 | padding: 0; 104 | max-width: 100%; 105 | height: 100%; 106 | background-color: #000000; 107 | color: #ffffff; 108 | -webkit-transition: all 300ms ease-out; 109 | -moz-transition: all 300ms ease-out; 110 | -ms-transition: all 300ms ease-out; 111 | -o-transition: all 300ms ease-out; 112 | transition: all 300ms ease-out; 113 | -webkit-transition-delay: 500ms; 114 | -moz-transition-delay: 500ms; 115 | -ms-transition-delay: 500ms; 116 | -o-transition-delay: 500ms; 117 | transition-delay: 500ms; 118 | } 119 | .parallax-one-child-theme-image-container:hover .parallax-one-child-theme-description { 120 | top: 0; 121 | display: block; 122 | padding: 0 15px; 123 | opacity: 0.8; 124 | } 125 | .parallax-one-child-theme-image-container { 126 | position: relative; 127 | overflow: hidden; 128 | } 129 | .parallax-one-child-theme-image-container img { 130 | max-width: 100%; 131 | } 132 | .parallax-one-child-theme-details .theme-details { 133 | padding: 10px; 134 | background: none repeat scroll 0 0 #F1F1F1; 135 | font-size: 18px; 136 | } 137 | 138 | .parallax-one-child-theme-details .theme-details.active { 139 | background: none repeat scroll 0 0 #2B5F87; 140 | color: #fff; 141 | } 142 | 143 | .parallax-one-child-theme-details .theme-details .theme-name { 144 | float:left; 145 | } 146 | .parallax-one-child-theme-details .theme-details .preview { 147 | margin-right: 2px; 148 | } 149 | .parallax-one-fre-pro table { 150 | border-collapse: collapse; 151 | width: 100%; 152 | } 153 | .parallax-one-fre-pro table tr { 154 | border-bottom: 1px solid #ddd; 155 | } 156 | .parallax-one-fre-pro table td { 157 | padding: 30px; 158 | } 159 | .parallax-one-fre-pro table th { 160 | padding-bottom: 30px; 161 | } 162 | .parallax-one-fre-pro table td span.dashicons-before:before { 163 | font-size: 50px; 164 | width: auto; 165 | height: auto; 166 | } 167 | .parallax-one-fre-pro table td span.dashicons-yes:before { 168 | color:green; 169 | } 170 | .parallax-one-fre-pro table td span.dashicons-no-alt:before { 171 | color:red; 172 | } 173 | .parallax-one-fre-pro table tr.parallax-one-text-center { 174 | text-align: center; 175 | } 176 | .parallax-one-actions-count { 177 | padding: 0 6px; 178 | display: inline-block; 179 | background-color: #d54e21; 180 | color: #fff; 181 | font-size: 9px; 182 | line-height: 17px; 183 | font-weight: 600; 184 | margin: 1px 0 0 2px; 185 | vertical-align: top; 186 | -webkit-border-radius: 10px; 187 | border-radius: 10px; 188 | z-index: 26; 189 | } 190 | .parallax-one-action-required-box { 191 | position: relative; 192 | } 193 | .parallax-one-dismiss-required-action { 194 | position: absolute; 195 | top: 0px; 196 | right: 0px; 197 | cursor: pointer; 198 | background-color: #D24A4A; 199 | border-radius: 50%; 200 | color: #fff; 201 | font-size: 14px; 202 | line-height: 20px; 203 | } 204 | .parallax-one-dismiss-required-action:hover { 205 | background-color: #CC8C8C; 206 | } -------------------------------------------------------------------------------- /content/themes/Parallax-One/inc/admin/welcome-screen/css/welcome_customizer.css: -------------------------------------------------------------------------------- 1 | .parallax-one-actions-count { 2 | padding: 0 6px; 3 | display: inline-block; 4 | background-color: #d54e21; 5 | color: #fff; 6 | font-size: 9px; 7 | line-height: 17px; 8 | font-weight: 600; 9 | margin: 1px 0 0 2px; 10 | vertical-align: top; 11 | -webkit-border-radius: 10px; 12 | border-radius: 10px; 13 | z-index: 26; 14 | } 15 | .parallax-one-upgrade-to-pro-button { 16 | padding: 3px 6px !important; 17 | line-height: 1.5 !important; 18 | font-size: 9px !important; 19 | color: #ffffff !important; 20 | background-color: #EA6F60; 21 | letter-spacing: 1px; 22 | text-transform: uppercase; 23 | } -------------------------------------------------------------------------------- /content/themes/Parallax-One/inc/admin/welcome-screen/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/inc/admin/welcome-screen/img/ajax-loader.gif -------------------------------------------------------------------------------- /content/themes/Parallax-One/inc/admin/welcome-screen/js/welcome.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function() { 2 | 3 | /* Tabs in welcome page */ 4 | function parallax_one_welcome_page_tabs(event) { 5 | jQuery(event).parent().addClass("active"); 6 | jQuery(event).parent().siblings().removeClass("active"); 7 | var tab = jQuery(event).attr("href"); 8 | jQuery(".parallax-one-tab-pane").not(tab).css("display", "none"); 9 | jQuery(tab).fadeIn(); 10 | } 11 | 12 | var parallax_one_actions_anchor = location.hash; 13 | 14 | if( (typeof parallax_one_actions_anchor !== 'undefined') && (parallax_one_actions_anchor != '') ) { 15 | parallax_one_welcome_page_tabs('a[href="'+ parallax_one_actions_anchor +'"]'); 16 | } 17 | 18 | jQuery(".parallax-one-nav-tabs a").click(function(event) { 19 | event.preventDefault(); 20 | parallax_one_welcome_page_tabs(this); 21 | }); 22 | 23 | }); -------------------------------------------------------------------------------- /content/themes/Parallax-One/inc/admin/welcome-screen/js/welcome_customizer.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function() { 2 | var parallax_one_aboutpage = parallaxOneWelcomeScreenCustomizerObject.aboutpage; 3 | 4 | /* Upsell in Customizer (Link to Welcome page) */ 5 | if ( !jQuery( ".parallax-upsells" ).length ) { 6 | jQuery('#customize-theme-controls > ul').prepend('
  • '); 7 | } 8 | 9 | if (typeof parallax_one_aboutpage !== 'undefined') { + 10 | jQuery('.parallax-upsells').append('{themeinfo}'.replace('{themeinfo}', parallaxOneWelcomeScreenCustomizerObject.themeinfo)); 11 | } 12 | 13 | if ( !jQuery( ".parallax-upsells" ).length ) { 14 | jQuery('#customize-theme-controls > ul').prepend('
  • '); 15 | } 16 | }); -------------------------------------------------------------------------------- /content/themes/Parallax-One/inc/admin/welcome-screen/sections/changelog.php: -------------------------------------------------------------------------------- 1 | 9 |
    10 | 11 |
    12 | 13 |

    Parallax One

    14 | 15 |
    16 | 17 | get_contents( get_template_directory().'/CHANGELOG.md' ); 21 | $parallax_one_changelog_lines = explode(PHP_EOL, $parallax_one_changelog); 22 | foreach($parallax_one_changelog_lines as $parallax_one_changelog_line){ 23 | if(substr( $parallax_one_changelog_line, 0, 3 ) === "###"){ 24 | echo '

    '.substr($parallax_one_changelog_line,3).'

    '; 25 | } else { 26 | echo $parallax_one_changelog_line.'
    '; 27 | } 28 | } 29 | 30 | ?> 31 | 32 |
    33 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/inc/admin/welcome-screen/sections/free_pro.php: -------------------------------------------------------------------------------- 1 | 6 | 7 |
    8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 24 | 25 | 26 | 27 | 28 | 32 | 33 | 34 | 35 | 36 | 40 | 41 | 42 | 43 | 44 | 48 | 49 | 50 | 51 | 52 | 56 | 57 | 58 | 59 | 60 | 64 | 65 | 66 | 67 | 68 | 72 | 73 | 74 | 75 | 76 | 80 | 81 | 82 | 83 | 84 | 88 | 89 | 90 | 91 | 92 | 96 | 97 | 98 | 99 | 100 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 |
    Parallax OneParallax One Plus
    21 |

    22 |

    23 |
    29 |

    30 |

    31 |
    37 |

    38 |

    39 |
    45 |

    46 |

    47 |
    53 |

    54 |

    55 |
    61 |

    62 |

    63 |
    69 |

    70 |

    71 |
    77 |

    78 |

    79 |
    85 |

    86 |

    87 |
    93 |

    94 |

    95 |
    101 |

    102 |

    103 |
    114 | 115 | 116 |
    -------------------------------------------------------------------------------- /content/themes/Parallax-One/inc/admin/welcome-screen/sections/github.php: -------------------------------------------------------------------------------- 1 | 6 | 7 |
    8 | 9 |

    10 | 11 |

    12 |

    13 |

    14 | 15 |

    16 | 17 |

    18 | 19 |
    20 | 21 |

    22 |

    23 | 24 |

    25 | 26 |

    27 | 28 |
    -------------------------------------------------------------------------------- /content/themes/Parallax-One/inc/admin/welcome-screen/welcome-screen.php: -------------------------------------------------------------------------------- 1 | 55 |
    56 |

    ', '' ); ?>

    57 |

    58 |
    59 | esc_url( admin_url( 'themes.php?page=parallax-one-welcome#getting_started' ) ), 82 | 'themeinfo' => __('View Theme Info','parallax-one'), 83 | ) ); 84 | 85 | } 86 | 87 | /** 88 | * Welcome screen content 89 | */ 90 | public function parallax_one_welcome_screen() { 91 | 92 | require_once( ABSPATH . 'wp-load.php' ); 93 | require_once( ABSPATH . 'wp-admin/admin.php' ); 94 | require_once( ABSPATH . 'wp-admin/admin-header.php' ); 95 | ?> 96 | 97 |
      98 | 99 |
    • 100 |
    • 101 |
    • 102 |
    103 | 104 |
    105 | 106 | 114 | 115 |
    116 | default = $this->setting->default; 13 | } 14 | 15 | 16 | protected function render() { 17 | $id = 'customize-control-' . str_replace( '[', '-', str_replace( ']', '', $this->id ) ); 18 | $class = 'customize-control customize-control-' . $this->type; ?> 19 |
  • 20 | render_content(); ?> 21 |
  • 22 | 26 | 30 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/inc/class/parallax-one-text-control.php: -------------------------------------------------------------------------------- 1 | message = $args['parallax_message']; 8 | } 9 | } 10 | 11 | public function render_content(){ 12 | echo ''.$this->label.''; 13 | echo $this->message; 14 | } 15 | } 16 | ?> -------------------------------------------------------------------------------- /content/themes/Parallax-One/inc/extras.php: -------------------------------------------------------------------------------- 1 | tag based on what is being viewed. 29 | * 30 | * @param string $title Default title text for current view. 31 | * @param string $sep Optional separator. 32 | * @return string The filtered title. 33 | */ 34 | function parallax_one_wp_title( $title, $sep ) { 35 | if ( is_feed() ) { 36 | return $title; 37 | } 38 | 39 | global $page, $paged; 40 | 41 | // Add the blog name 42 | $title .= get_bloginfo( 'name', 'display' ); 43 | 44 | // Add the blog description for the home/front page. 45 | $site_description = get_bloginfo( 'description', 'display' ); 46 | if ( $site_description && ( is_home() || is_front_page() ) ) { 47 | $title .= " $sep $site_description"; 48 | } 49 | 50 | // Add a page number if necessary: 51 | if ( ( $paged >= 2 || $page >= 2 ) && ! is_404() ) { 52 | $title .= " $sep " . sprintf( esc_html__( 'Page %s', 'parallax-one' ), max( $paged, $page ) ); 53 | } 54 | 55 | return $title; 56 | } 57 | add_filter( 'wp_title', 'parallax_one_wp_title', 10, 2 ); 58 | 59 | /** 60 | * Title shim for sites older than WordPress 4.1. 61 | * 62 | * @link https://make.wordpress.org/core/2014/10/29/title-tags-in-4-1/ 63 | * @todo Remove this function when WordPress 4.3 is released. 64 | */ 65 | function parallax_one_render_title() { 66 | ?> 67 | <?php wp_title( '|', true, 'right' ); ?> 68 | 'main', 16 | 'footer' => 'page', 17 | ) ); 18 | } 19 | add_action( 'after_setup_theme', 'parallax_one_jetpack_setup' ); 20 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/index.php: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 |
    19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
    27 | 28 |
    29 | 30 |
    31 |
    id="main" class="site-main" role="main"> 32 | 33 | 34 | 35 | 36 | 37 | 38 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 |
    57 |
    58 | 59 | 60 | 61 |
    62 | 63 |
    64 | 65 | 66 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/js/custom.home.js: -------------------------------------------------------------------------------- 1 | /* slider [begin] */ 2 | var slideWidth; 3 | var slideCount; 4 | var slideHeight = 0; 5 | var sliderUlHeight = 0; 6 | var marginTop = 0; 7 | 8 | /* LATEST NEWS */ 9 | jQuery(document).ready(function () { 10 | parallax_one_latest_news(); 11 | jQuery('button.control_prev').click(function () { 12 | parallax_one_moveBottom(); 13 | }); 14 | jQuery('button.control_next').click(function () { 15 | parallax_one_moveTop(); 16 | }); 17 | }); 18 | 19 | jQuery(window).resize(function() { 20 | 21 | /* maximum height for slides */ 22 | slideWidth; 23 | slideCount; 24 | slideHeight = 0; 25 | sliderUlHeight = 0; 26 | marginTop = 0; 27 | 28 | jQuery('#parallax_slider > ul > li').css('height','auto').each(function(){ 29 | if ( slideHeight < jQuery(this).height() ){ 30 | slideHeight = jQuery(this).height(); 31 | } 32 | }); 33 | 34 | slideCount = jQuery('#parallax_slider > ul > li').length; 35 | sliderUlHeight = slideCount * slideHeight; 36 | 37 | /* set height */ 38 | jQuery('#parallax_slider').css({ width: slideWidth, height: slideHeight }); 39 | jQuery('#parallax_slider > ul > li ').css({ height: slideHeight}); 40 | jQuery('#parallax_slider > ul').css({ height: sliderUlHeight, top: marginTop }); 41 | 42 | if( jQuery('.control_next').hasClass('fade-btn') ){ 43 | jQuery('.control_next').removeClass('fade-btn'); 44 | } 45 | if( !jQuery('.control_prev').hasClass('fade-btn') ){ 46 | jQuery('.control_prev').addClass('fade-btn'); 47 | } 48 | 49 | 50 | }); 51 | 52 | /* latest news [start] */ 53 | function parallax_one_latest_news() { 54 | 55 | /* maximum height for slides */ 56 | slideHeight = 0; 57 | 58 | jQuery('#parallax_slider > ul > li').css('height','auto').each(function(){ 59 | if ( slideHeight < jQuery(this).height() ){ 60 | slideHeight = jQuery(this).height(); 61 | } 62 | }); 63 | 64 | slideCount = jQuery('#parallax_slider > ul > li').length; 65 | sliderUlHeight = slideCount * slideHeight; 66 | 67 | /* set height */ 68 | jQuery('#parallax_slider').css({ width: slideWidth, height: slideHeight }); 69 | jQuery('#parallax_slider > ul > li').css({ height: slideHeight}); 70 | jQuery('#parallax_slider > ul').css({ height: sliderUlHeight}); 71 | 72 | } 73 | 74 | function parallax_one_moveTop() { 75 | if ( marginTop - slideHeight >= - sliderUlHeight + slideHeight ){ 76 | marginTop = marginTop - slideHeight; 77 | jQuery('#parallax_slider > ul').animate({ 78 | top: marginTop 79 | }, 400 ); 80 | if( marginTop == - slideHeight * (slideCount-1) ) { 81 | jQuery('.control_next').addClass('fade-btn'); 82 | } 83 | if( jQuery('.control_prev').hasClass('fade-btn') ){ 84 | jQuery('.control_prev').removeClass('fade-btn'); 85 | } 86 | } 87 | }; 88 | 89 | function parallax_one_moveBottom() { 90 | if ( marginTop + slideHeight <= 0 ){ 91 | marginTop = marginTop + slideHeight; 92 | jQuery('#parallax_slider > ul').animate({ 93 | top: marginTop 94 | }, 400 ); 95 | if( marginTop == 0 ) { 96 | jQuery('.control_prev').addClass('fade-btn'); 97 | } 98 | if( jQuery('.control_next').hasClass('fade-btn') ){ 99 | jQuery('.control_next').removeClass('fade-btn'); 100 | } 101 | } 102 | }; 103 | /* latest news [end] */ 104 | 105 | /* PRE LOADER */ 106 | jQuery(window).load(function () { 107 | "use strict"; 108 | jQuery(".status").fadeOut(); 109 | jQuery(".preloader").delay(1000).fadeOut("slow"); 110 | }); 111 | 112 | jQuery(window).resize(function() { 113 | "use strict"; 114 | var ww = jQuery(window).width(); 115 | /* COLLAPSE NAVIGATION ON MOBILE AFTER CLICKING ON LINK */ 116 | if (ww < 480) { 117 | jQuery('.sticky-navigation a').on('click', function() { 118 | jQuery(".navbar-toggle").click(); 119 | }); 120 | } 121 | }); 122 | 123 | 124 | jQuery(window).load(function() { 125 | "use strict"; 126 | /* useful for Our team section */ 127 | jQuery('.team-member-wrap .team-member-box').each(function(){ 128 | var thisHeight = jQuery(this).find('.member-pic').height(); 129 | jQuery(this).find('.member-details').height(thisHeight); 130 | }); 131 | }); 132 | 133 | 134 | var home_window_width_old; 135 | jQuery(document).ready(function(){ 136 | home_window_width_old = jQuery('.container').width(); 137 | if( home_window_width_old < 750 ){ 138 | jQuery('.our_services_wrap_piterest').parallaxonegridpinterest({columns: 1,selector: '.service-box'}); 139 | jQuery('.happy_customers_wrap_piterest').parallaxonegridpinterest({columns: 1,selector: '.testimonials-box'}); 140 | } else { 141 | jQuery('.our_services_wrap_piterest').parallaxonegridpinterest({columns: 3,selector: '.service-box'}); 142 | jQuery('.happy_customers_wrap_piterest').parallaxonegridpinterest({columns: 3,selector: '.testimonials-box'}); 143 | } 144 | }); 145 | 146 | jQuery(window).resize(function() { 147 | if( home_window_width_old != jQuery('.container').outerWidth() ){ 148 | home_window_width_old = jQuery('.container').outerWidth(); 149 | if( home_window_width_old < 750 ){ 150 | jQuery('.our_services_wrap_piterest').parallaxonegridpinterest({columns: 1,selector: '.service-box'}); 151 | jQuery('.happy_customers_wrap_piterest').parallaxonegridpinterest({columns: 1,selector: '.testimonials-box'}); 152 | } else { 153 | jQuery('.our_services_wrap_piterest').parallaxonegridpinterest({columns: 3,selector: '.service-box'}); 154 | jQuery('.happy_customers_wrap_piterest').parallaxonegridpinterest({columns: 3,selector: '.testimonials-box'}); 155 | } 156 | } 157 | }); 158 | 159 | 160 | /*============================= 161 | ========= MAP OVERLAY ========= 162 | ===============================*/ 163 | jQuery(document).ready(function(){ 164 | jQuery('html').click(function(event) { 165 | jQuery('.parallax_one_map_overlay').show(); 166 | }); 167 | 168 | jQuery('#container-fluid').click(function(event){ 169 | event.stopPropagation(); 170 | }); 171 | 172 | jQuery('.parallax_one_map_overlay').on('click',function(event){ 173 | jQuery(this).hide(); 174 | }) 175 | }); 176 | 177 | 178 | jQuery(document).ready(function() { 179 | "use strict"; 180 | mainNav(); 181 | }); 182 | 183 | jQuery(document).ready(function(){ 184 | if(jQuery('.overlay-layer-nav').hasClass('sticky-navigation-open')){ 185 | $parallax_one_header_height = jQuery('.navbar').height(); 186 | $parallax_one_header_height+=84; 187 | jQuery('.header .overlay-layer').css('padding-top',$parallax_one_header_height); 188 | } 189 | }); -------------------------------------------------------------------------------- /content/themes/Parallax-One/js/html5shiv.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @preserve HTML5 Shiv 3.7.2 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed 3 | */ 4 | !function(a,b){function c(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x",d.insertBefore(c.lastChild,d.firstChild)}function d(){var a=t.elements;return"string"==typeof a?a.split(" "):a}function e(a,b){var c=t.elements;"string"!=typeof c&&(c=c.join(" ")),"string"!=typeof a&&(a=a.join(" ")),t.elements=c+" "+a,j(b)}function f(a){var b=s[a[q]];return b||(b={},r++,a[q]=r,s[r]=b),b}function g(a,c,d){if(c||(c=b),l)return c.createElement(a);d||(d=f(c));var e;return e=d.cache[a]?d.cache[a].cloneNode():p.test(a)?(d.cache[a]=d.createElem(a)).cloneNode():d.createElem(a),!e.canHaveChildren||o.test(a)||e.tagUrn?e:d.frag.appendChild(e)}function h(a,c){if(a||(a=b),l)return a.createDocumentFragment();c=c||f(a);for(var e=c.frag.cloneNode(),g=0,h=d(),i=h.length;i>g;g++)e.createElement(h[g]);return e}function i(a,b){b.cache||(b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag()),a.createElement=function(c){return t.shivMethods?g(c,a,b):b.createElem(c)},a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+d().join().replace(/[\w\-:]+/g,function(a){return b.createElem(a),b.frag.createElement(a),'c("'+a+'")'})+");return n}")(t,b.frag)}function j(a){a||(a=b);var d=f(a);return!t.shivCSS||k||d.hasCSS||(d.hasCSS=!!c(a,"article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}")),l||i(a,d),a}var k,l,m="3.7.2",n=a.html5||{},o=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,p=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,q="_html5shiv",r=0,s={};!function(){try{var a=b.createElement("a");a.innerHTML="",k="hidden"in a,l=1==a.childNodes.length||function(){b.createElement("a");var a=b.createDocumentFragment();return"undefined"==typeof a.cloneNode||"undefined"==typeof a.createDocumentFragment||"undefined"==typeof a.createElement}()}catch(c){k=!0,l=!0}}();var t={elements:n.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output picture progress section summary template time video",version:m,shivCSS:n.shivCSS!==!1,supportsUnknownElements:l,shivMethods:n.shivMethods!==!1,type:"default",shivDocument:j,createElement:g,createDocumentFragment:h,addElements:e};a.html5=t,j(b)}(this,document); -------------------------------------------------------------------------------- /content/themes/Parallax-One/js/plugin.home.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Parallax.js 3 | * The MIT License 4 | * 5 | * Copyright (C) 2014 Matthew Wagerfield - @wagerfield 6 | */ 7 | !function(t,i,e){"use strict";function s(t,i){this.element=t,this.layers=t.getElementsByClassName("layer");var e={calibrateX:this.data(this.element,"calibrate-x"),calibrateY:this.data(this.element,"calibrate-y"),invertX:this.data(this.element,"invert-x"),invertY:this.data(this.element,"invert-y"),limitX:this.data(this.element,"limit-x"),limitY:this.data(this.element,"limit-y"),scalarX:this.data(this.element,"scalar-x"),scalarY:this.data(this.element,"scalar-y"),frictionX:this.data(this.element,"friction-x"),frictionY:this.data(this.element,"friction-y"),originX:this.data(this.element,"origin-x"),originY:this.data(this.element,"origin-y")};for(var s in e)null===e[s]&&delete e[s];this.extend(this,r,i,e),this.calibrationTimer=null,this.calibrationFlag=!0,this.enabled=!1,this.depths=[],this.raf=null,this.bounds=null,this.ex=0,this.ey=0,this.ew=0,this.eh=0,this.ecx=0,this.ecy=0,this.erx=0,this.ery=0,this.cx=0,this.cy=0,this.ix=0,this.iy=0,this.mx=0,this.my=0,this.vx=0,this.vy=0,this.onMouseMove=this.onMouseMove.bind(this),this.onDeviceOrientation=this.onDeviceOrientation.bind(this),this.onOrientationTimer=this.onOrientationTimer.bind(this),this.onCalibrationTimer=this.onCalibrationTimer.bind(this),this.onAnimationFrame=this.onAnimationFrame.bind(this),this.onWindowResize=this.onWindowResize.bind(this),this.initialise()}var n="Parallax",o=30,r={relativeInput:!1,clipRelativeInput:!1,calibrationThreshold:100,calibrationDelay:500,supportDelay:500,calibrateX:!1,calibrateY:!0,invertX:!0,invertY:!0,limitX:!1,limitY:!1,scalarX:10,scalarY:10,frictionX:.1,frictionY:.1,originX:.5,originY:.5};s.prototype.extend=function(){if(arguments.length>1)for(var t=arguments[0],i=1,e=arguments.length;e>i;i++){var s=arguments[i];for(var n in s)t[n]=s[n]}},s.prototype.data=function(t,i){return this.deserialize(t.getAttribute("data-"+i))},s.prototype.deserialize=function(t){return"true"===t?!0:"false"===t?!1:"null"===t?null:!isNaN(parseFloat(t))&&isFinite(t)?parseFloat(t):t},s.prototype.camelCase=function(t){return t.replace(/-+(.)?/g,function(t,i){return i?i.toUpperCase():""})},s.prototype.transformSupport=function(s){for(var n=i.createElement("div"),o=!1,r=null,a=!1,h=null,l=null,p=0,c=this.vendors.length;c>p;p++)if(null!==this.vendors[p]?(h=this.vendors[p][0]+"transform",l=this.vendors[p][1]+"Transform"):(h="transform",l="transform"),n.style[l]!==e){o=!0;break}switch(s){case"2D":a=o;break;case"3D":if(o){var m=i.body||i.createElement("body"),y=i.documentElement,u=y.style.overflow;i.body||(y.style.overflow="hidden",y.appendChild(m),m.style.overflow="hidden",m.style.background=""),m.appendChild(n),n.style[l]="translate3d(1px,1px,1px)",r=t.getComputedStyle(n).getPropertyValue(h),a=r!==e&&r.length>0&&"none"!==r,y.style.overflow=u,m.removeChild(n)}}return a},s.prototype.ww=null,s.prototype.wh=null,s.prototype.wcx=null,s.prototype.wcy=null,s.prototype.wrx=null,s.prototype.wry=null,s.prototype.portrait=null,s.prototype.desktop=!navigator.userAgent.match(/(iPhone|iPod|iPad|Android|BlackBerry|BB10|mobi|tablet|opera mini|nexus 7)/i),s.prototype.vendors=[null,["-webkit-","webkit"],["-moz-","Moz"],["-o-","O"],["-ms-","ms"]],s.prototype.motionSupport=!!t.DeviceMotionEvent,s.prototype.orientationSupport=!!t.DeviceOrientationEvent,s.prototype.orientationStatus=0,s.prototype.transform2DSupport=s.prototype.transformSupport("2D"),s.prototype.transform3DSupport=s.prototype.transformSupport("3D"),s.prototype.propertyCache={},s.prototype.initialise=function(){this.transform3DSupport&&this.accelerate(this.element);var i=t.getComputedStyle(this.element);"static"===i.getPropertyValue("position")&&(this.element.style.position="relative"),this.updateLayers(),this.updateDimensions(),this.enable(),this.queueCalibration(this.calibrationDelay)},s.prototype.updateLayers=function(){this.layers=this.element.getElementsByClassName("layer"),this.depths=[];for(var t=0,i=this.layers.length;i>t;t++){var e=this.layers[t];this.transform3DSupport&&this.accelerate(e),e.style.position=t?"absolute":"relative",e.style.display="block",e.style.left=0,e.style.top=0,this.depths.push(this.data(e,"depth")||0)}},s.prototype.updateDimensions=function(){this.ww=t.innerWidth,this.wh=t.innerHeight,this.wcx=this.ww*this.originX,this.wcy=this.wh*this.originY,this.wrx=Math.max(this.wcx,this.ww-this.wcx),this.wry=Math.max(this.wcy,this.wh-this.wcy)},s.prototype.updateBounds=function(){this.bounds=this.element.getBoundingClientRect(),this.ex=this.bounds.left,this.ey=this.bounds.top,this.ew=this.bounds.width,this.eh=this.bounds.height,this.ecx=this.ew*this.originX,this.ecy=this.eh*this.originY,this.erx=Math.max(this.ecx,this.ew-this.ecx),this.ery=Math.max(this.ecy,this.eh-this.ecy)},s.prototype.queueCalibration=function(t){clearTimeout(this.calibrationTimer),this.calibrationTimer=setTimeout(this.onCalibrationTimer,t)},s.prototype.enable=function(){this.enabled||(this.enabled=!0,this.orientationSupport?(this.portrait=null,t.addEventListener("deviceorientation",this.onDeviceOrientation),setTimeout(this.onOrientationTimer,this.supportDelay)):(this.cx=0,this.cy=0,this.portrait=!1,t.addEventListener("mousemove",this.onMouseMove)),t.addEventListener("resize",this.onWindowResize),this.raf=requestAnimationFrame(this.onAnimationFrame))},s.prototype.disable=function(){this.enabled&&(this.enabled=!1,this.orientationSupport?t.removeEventListener("deviceorientation",this.onDeviceOrientation):t.removeEventListener("mousemove",this.onMouseMove),t.removeEventListener("resize",this.onWindowResize),cancelAnimationFrame(this.raf))},s.prototype.calibrate=function(t,i){this.calibrateX=t===e?this.calibrateX:t,this.calibrateY=i===e?this.calibrateY:i},s.prototype.invert=function(t,i){this.invertX=t===e?this.invertX:t,this.invertY=i===e?this.invertY:i},s.prototype.friction=function(t,i){this.frictionX=t===e?this.frictionX:t,this.frictionY=i===e?this.frictionY:i},s.prototype.scalar=function(t,i){this.scalarX=t===e?this.scalarX:t,this.scalarY=i===e?this.scalarY:i},s.prototype.limit=function(t,i){this.limitX=t===e?this.limitX:t,this.limitY=i===e?this.limitY:i},s.prototype.origin=function(t,i){this.originX=t===e?this.originX:t,this.originY=i===e?this.originY:i},s.prototype.clamp=function(t,i,e){return t=Math.max(t,i),t=Math.min(t,e)},s.prototype.css=function(t,i,s){var n=this.propertyCache[i];if(!n)for(var o=0,r=this.vendors.length;r>o;o++)if(n=null!==this.vendors[o]?this.camelCase(this.vendors[o][1]+"-"+i):i,t.style[n]!==e){this.propertyCache[i]=n;break}t.style[n]=s},s.prototype.accelerate=function(t){this.css(t,"transform","translate3d(0,0,0)"),this.css(t,"transform-style","preserve-3d"),this.css(t,"backface-visibility","hidden")},s.prototype.setPosition=function(t,i,e){i+="px",e+="px",this.transform3DSupport?this.css(t,"transform","translate3d("+i+","+e+",0)"):this.transform2DSupport?this.css(t,"transform","translate("+i+","+e+")"):(t.style.left=i,t.style.top=e)},s.prototype.onOrientationTimer=function(){this.orientationSupport&&0===this.orientationStatus&&(this.disable(),this.orientationSupport=!1,this.enable())},s.prototype.onCalibrationTimer=function(){this.calibrationFlag=!0},s.prototype.onWindowResize=function(){this.updateDimensions()},s.prototype.onAnimationFrame=function(){this.updateBounds();var t=this.ix-this.cx,i=this.iy-this.cy;(Math.abs(t)>this.calibrationThreshold||Math.abs(i)>this.calibrationThreshold)&&this.queueCalibration(0),this.portrait?(this.mx=this.calibrateX?i:this.iy,this.my=this.calibrateY?t:this.ix):(this.mx=this.calibrateX?t:this.ix,this.my=this.calibrateY?i:this.iy),this.mx*=this.ew*(this.scalarX/100),this.my*=this.eh*(this.scalarY/100),isNaN(parseFloat(this.limitX))||(this.mx=this.clamp(this.mx,-this.limitX,this.limitX)),isNaN(parseFloat(this.limitY))||(this.my=this.clamp(this.my,-this.limitY,this.limitY)),this.vx+=(this.mx-this.vx)*this.frictionX,this.vy+=(this.my-this.vy)*this.frictionY;for(var e=0,s=this.layers.length;s>e;e++){var n=this.layers[e],o=this.depths[e],r=this.vx*o*(this.invertX?-1:1),a=this.vy*o*(this.invertY?-1:1);this.setPosition(n,r,a)}this.raf=requestAnimationFrame(this.onAnimationFrame)},s.prototype.onDeviceOrientation=function(t){if(!this.desktop&&null!==t.beta&&null!==t.gamma){this.orientationStatus=1;var i=(t.beta||0)/o,e=(t.gamma||0)/o,s=this.wh>this.ww;this.portrait!==s&&(this.portrait=s,this.calibrationFlag=!0),this.calibrationFlag&&(this.calibrationFlag=!1,this.cx=i,this.cy=e),this.ix=i,this.iy=e}},s.prototype.onMouseMove=function(t){var i=t.clientX,e=t.clientY;!this.orientationSupport&&this.relativeInput?(this.clipRelativeInput&&(i=Math.max(i,this.ex),i=Math.min(i,this.ex+this.ew),e=Math.max(e,this.ey),e=Math.min(e,this.ey+this.eh)),this.ix=(i-this.ex-this.ecx)/this.erx,this.iy=(e-this.ey-this.ecy)/this.ery):(this.ix=(i-this.wcx)/this.wrx,this.iy=(e-this.wcy)/this.wry)},t[n]=s}(window,document); 8 | 9 | /* Header section */ 10 | jQuery(window).load(parallax_effect); 11 | jQuery(window).resize(parallax_effect); 12 | 13 | function parallax_effect(){ 14 | 15 | if( jQuery('#parallax_move').length>0 ) { 16 | var scene = document.getElementById('parallax_move'); 17 | var window_width = jQuery(window).outerWidth(); 18 | jQuery('#parallax_move').css({ 19 | 'width': window_width + 120, 20 | 'margin-left': -60, 21 | 'margin-top': -60, 22 | 'position': 'absolute', 23 | }); 24 | var h = jQuery('.overlay-layer-wrap').outerHeight(); 25 | jQuery('#parallax_move').children().each(function(){ 26 | jQuery(this).css({ 27 | 'height': h+100, 28 | }); 29 | }); 30 | var parallax = new Parallax(scene); 31 | } 32 | 33 | } 34 | 35 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/js/skip-link-focus-fix.js: -------------------------------------------------------------------------------- 1 | ( function() { 2 | var is_webkit = navigator.userAgent.toLowerCase().indexOf( 'webkit' ) > -1, 3 | is_opera = navigator.userAgent.toLowerCase().indexOf( 'opera' ) > -1, 4 | is_ie = navigator.userAgent.toLowerCase().indexOf( 'msie' ) > -1; 5 | 6 | if ( ( is_webkit || is_opera || is_ie ) && document.getElementById && window.addEventListener ) { 7 | window.addEventListener( 'hashchange', function() { 8 | var id = location.hash.substring( 1 ), 9 | element; 10 | 11 | if ( ! ( /^[A-z0-9_-]+$/.test( id ) ) ) { 12 | return; 13 | } 14 | 15 | element = document.getElementById( id ); 16 | 17 | if ( element ) { 18 | if ( ! ( /^(?:a|select|input|button|textarea)$/i.test( element.tagName ) ) ) { 19 | element.tabIndex = -1; 20 | } 21 | 22 | element.focus(); 23 | } 24 | }, false ); 25 | } 26 | })(); 27 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/languages/fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/languages/fr_FR.mo -------------------------------------------------------------------------------- /content/themes/Parallax-One/languages/pl_PL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/languages/pl_PL.mo -------------------------------------------------------------------------------- /content/themes/Parallax-One/languages/pt_BR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/languages/pt_BR.mo -------------------------------------------------------------------------------- /content/themes/Parallax-One/languages/ru_RU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/themes/Parallax-One/languages/ru_RU.mo -------------------------------------------------------------------------------- /content/themes/Parallax-One/page.php: -------------------------------------------------------------------------------- 1 | 15 | 16 |
    17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 |
    25 | 26 |
    27 |
    28 |
    29 | 30 | 31 | 32 | 33 | 34 | 35 | 41 | 42 | 43 | 44 | 45 |
    46 |
    47 | 48 | 49 |
    50 | 51 |
    52 | 53 | 54 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
    20 | 21 |
    22 | 23 |
    24 |
    25 | 26 | 27 | 28 | 31 | 32 | 33 | 34 | 35 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 |
    55 |
    56 | 57 | 58 | 59 |
    60 | 61 |
    62 | 63 | 64 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/sections/parallax_one_contact_info_section.php: -------------------------------------------------------------------------------- 1 | 4 | "icon-basic-mail" ,"text" => "contact@site.com", "link" => "#", "id" => "parallax_one_56d450a72cb3a" ), 7 | array("icon_value" => "icon-basic-geolocalize-01" ,"text" => "Company address", "link" => "#", "id" => "parallax_one_56d069b88cb6f" ), 8 | array("icon_value" => "icon-basic-tablet" ,"text" => "0 332 548 954", "link" => "#", "id" => "parallax_one_56d069b98cb70" ) 9 | ) ) ); 10 | 11 | $allowed_protocols = wp_allowed_protocols(); 12 | array_push($allowed_protocols,'callto'); 13 | 14 | if( !parallax_one_general_repeater_is_empty($parallax_one_contact_info_item) ){ 15 | $parallax_one_contact_info_item_decoded = json_decode($parallax_one_contact_info_item); 16 | parallax_hook_contact_before(); ?> 17 |
    18 | 19 |
    20 |
    21 | 81 |
    82 |
    83 | 84 |
    85 | 86 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/sections/parallax_one_happy_customers_section.php: -------------------------------------------------------------------------------- 1 | 4 | parallax_get_file('/images/clients/1.jpg'),'title' => esc_html__('Happy Customer','parallax-one'),'subtitle' => esc_html__('Lorem ipsum','parallax-one'),'text' => esc_html__('Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla nec purus feugiat, molestie ipsum et, consequat nibh. Etiam non elit dui. Nullam vel eros sit amet arcu vestibulum accumsan in in leo. Fusce malesuada vulputate faucibus. Integer in hendrerit nisi. Praesent a hendrerit urna. In non imperdiet elit, sed molestie odio. Fusce ac metus non purus sollicitudin laoreet.','parallax-one'),'id' => 'parallax_one_56fd526edcd4e'), 11 | array('image_url' => parallax_get_file('/images/clients/2.jpg'),'title' => esc_html__('Happy Customer','parallax-one'),'subtitle' => esc_html__('Lorem ipsum','parallax-one'),'text' => esc_html__('Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla nec purus feugiat, molestie ipsum et, consequat nibh. Etiam non elit dui. Nullam vel eros sit amet arcu vestibulum accumsan in in leo. Fusce malesuada vulputate faucibus. Integer in hendrerit nisi. Praesent a hendrerit urna. In non imperdiet elit, sed molestie odio. Fusce ac metus non purus sollicitudin laoreet.','parallax-one'),'id' => 'parallax_one_56fd526ddcd4d'), 12 | array('image_url' => parallax_get_file('/images/clients/3.jpg'),'title' => esc_html__('Happy Customer','parallax-one'),'subtitle' => esc_html__('Lorem ipsum','parallax-one'),'text' => esc_html__('Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla nec purus feugiat, molestie ipsum et, consequat nibh. Etiam non elit dui. Nullam vel eros sit amet arcu vestibulum accumsan in in leo. Fusce malesuada vulputate faucibus. Integer in hendrerit nisi. Praesent a hendrerit urna. In non imperdiet elit, sed molestie odio. Fusce ac metus non purus sollicitudin laoreet.','parallax-one'),'id' => 'parallax_one_56fd5259dcd4c') 13 | ) ) ); 14 | $happy_customers_wrap_piterest = get_theme_mod('paralax_one_testimonials_pinterest_style','5'); 15 | 16 | 17 | if( !empty($parallax_one_happy_customers_title) || !empty($parallax_one_happy_customers_subtitle) || !parallax_one_general_repeater_is_empty($parallax_one_testimonials_content) ){ ?> 18 | 19 |
    20 | 21 |
    22 |
    23 | 25 |
    26 | 28 |

    29 | 31 |

    32 | 36 |
    37 | 39 |
    40 | 42 |
    43 | 47 |
    48 | id); 52 | 53 | if( !empty( $parallax_one_testimonial->image_url ) ){ 54 | if( function_exists( 'pll__' ) ){ 55 | $image = pll__($parallax_one_testimonial->image_url); 56 | } else { 57 | $image = apply_filters( 'wpml_translate_single_string', $parallax_one_testimonial->image_url, 'Parallax One -> Testimonials section', 'Testimonial box image '.$id ); 58 | } 59 | } 60 | 61 | if( !empty($parallax_one_testimonial->title) ){ 62 | if( function_exists( 'pll__' ) ){ 63 | $title = pll__( $parallax_one_testimonial->title ); 64 | } else { 65 | $title = apply_filters( 'wpml_translate_single_string', $parallax_one_testimonial->title, 'Parallax One -> Testimonials section', 'Testimonial box title '.$id ); 66 | } 67 | } 68 | 69 | if( !empty($parallax_one_testimonial->subtitle) ){ 70 | if( function_exists( 'pll__' ) ){ 71 | $subtitle = pll__($parallax_one_testimonial->subtitle); 72 | } else { 73 | $subtitle = apply_filters( 'wpml_translate_single_string', $parallax_one_testimonial->subtitle, 'Parallax One -> Testimonials section', 'Testimonial box subtitle '.$id ); 74 | } 75 | } 76 | 77 | if( !empty($parallax_one_testimonial->text) ){ 78 | if( function_exists( 'pll__' ) ){ 79 | $text = pll__($parallax_one_testimonial->text); 80 | } else{ 81 | $text = apply_filters( 'wpml_translate_single_string', $parallax_one_testimonial->text, 'Parallax One -> Testimonials section', 'Testimonial box text '.$id ); 82 | } 83 | } 84 | 85 | if( !empty( $image ) || !empty( $title ) || !empty($subtitle) || !empty($text) ){ 86 | parallax_hook_testimonials_entry_before(); ?> 87 |
    88 | 89 | 135 | 136 |
    137 | 138 | 141 |
    142 | 144 |
    145 |
    146 | 147 |
    148 | 149 | 152 | 153 |
    154 | 155 |
    156 |
    157 |
    158 |

    159 |
    160 |
    161 |
    162 |
    163 | 164 |
    165 | 166 | 2 | '; 23 | 24 | 25 | if ( empty($parallax_one_first_layer) && empty($parallax_one_second_layer) ) { 26 | 27 | $parallax_one_header_image2 = get_header_image(); 28 | echo '
  • '; 29 | 30 | } else { 31 | 32 | if( !empty($parallax_one_first_layer) ) { 33 | echo '
  • '; 34 | } 35 | if( !empty($parallax_one_second_layer) ) { 36 | echo '
  • '; 37 | } 38 | 39 | } 40 | 41 | echo ''; 42 | 43 | } ?> 44 | 45 | 46 |
    47 | 48 |
    49 | 50 | 51 |
    '; 54 | } elseif ( is_customize_preview() ) { 55 | echo ''; 56 | } 57 | ?> 58 | 59 | 60 |
    61 |
    62 | 63 | 64 | 66 |
    67 | 68 | 69 | '.wp_kses_post($parallax_one_header_title).''; 72 | } elseif ( is_customize_preview() ) { 73 | echo '

    '; 74 | } 75 | 76 | if( !empty($parallax_one_header_subtitle) ){ 77 | echo '
    '.wp_kses_post($parallax_one_header_subtitle).'
    '; 78 | } elseif ( is_customize_preview() ) { 79 | echo '
    '; 80 | } 81 | ?> 82 | 83 | 84 | 87 | 91 | 93 | 94 | 97 | 98 | 99 |
    100 | 101 | 104 |
    105 |
    106 |
    107 | 108 | 109 | 110 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/sections/parallax_one_latest_news_section.php: -------------------------------------------------------------------------------- 1 | 4 | 'post', 'posts_per_page' => $parallax_number_of_posts, 'order' => 'DESC','ignore_sticky_posts' => true ); 8 | 9 | $parallax_latestnews_cat = parallax_latest_news_cat(); 10 | if ( !empty($parallax_latestnews_cat) ): 11 | $args['cat'] = $parallax_latestnews_cat; 12 | endif; 13 | 14 | $the_query = new WP_Query( $args ); 15 | if ( $the_query->have_posts() ) { 16 | $parallax_one_latest_news_title = get_theme_mod('parallax_one_latest_news_title',esc_html__('Latest news','parallax-one')); 17 | if($parallax_number_of_posts > 0) { 18 | ?> 19 | 20 |
    21 | 22 |
    23 |
    24 |
    25 | 26 | 27 |

    '.esc_attr($parallax_one_latest_news_title).'

    '; 30 | } elseif ( isset( $wp_customize ) ) { 31 | echo '

    '; 32 | } 33 | ?> 34 | 35 |
    36 |
    37 | 38 | 39 |
    40 | 41 |
    42 |
      43 | 44 | have_posts() ) : $the_query->the_post(); 49 | 50 | $i_latest_posts++; 51 | 52 | 53 | if ( !wp_is_mobile() ){ 54 | if($i_latest_posts % 2 == 1){ 55 | echo '
    • '; 56 | } 57 | } else { 58 | echo '
    • '; 59 | } 60 | ?> 61 | 62 |
      63 | 66 | 79 |
      80 |
      81 |

      82 | 83 |

      84 | 97 |
      98 |
      99 | 100 | '.get_the_title().'' ); ?> 101 |
      102 |
      103 |
      104 | 105 | '; 109 | } 110 | } else { 111 | echo '
    • '; 112 | } 113 | 114 | endwhile; 115 | wp_reset_postdata(); 116 | ?> 117 |
    118 |
    119 |
    120 |
    121 |
    122 | 123 | 124 |
    125 | 126 | 129 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/sections/parallax_one_logos_section.php: -------------------------------------------------------------------------------- 1 | 4 | parallax_get_file('/images/companies/1.png') ,"link" => "#", "id" => "parallax_one_56d7ea7f40f56" ), 7 | array("image_url" => parallax_get_file('/images/companies/2.png') ,"link" => "#", "id" => "parallax_one_56d7f2cb8a158" ), 8 | array("image_url" => parallax_get_file('/images/companies/3.png') ,"link" => "#", "id" => "parallax_one_56d7f2cc8a159" ), 9 | array("image_url" => parallax_get_file('/images/companies/4.png') ,"link" => "#", "id" => "parallax_one_56d7f2ce8a15a" ), 10 | array("image_url" => parallax_get_file('/images/companies/5.png') ,"link" => "#", "id" => "parallax_one_56d7f2cf8a15b" ) 11 | ) ) ); 12 | 13 | if( !empty( $parallax_one_logos ) ){ 14 | $parallax_one_logos_decoded = json_decode( $parallax_one_logos ); 15 | parallax_hook_logos_before(); ?> 16 | 17 |
    18 | 20 |
    21 |
      22 | id; 26 | if( function_exists( 'pll__' ) ){ 27 | if( !empty( $parallax_one_logo->link ) ){ 28 | $link = pll__( $parallax_one_logo->link ); 29 | } 30 | 31 | if( !empty( $parallax_one_logo->image_url ) ){ 32 | $image = pll__( $parallax_one_logo->image_url ); 33 | } 34 | } else { 35 | if( !empty( $parallax_one_logo->link ) ){ 36 | $link = apply_filters( 'wpml_translate_single_string', $parallax_one_logo->link, 'Parallax One -> Logos section', 'Logo link '.$parallax_one_logo->id ); 37 | } 38 | 39 | if( !empty( $parallax_one_logo->image_url ) ){ 40 | $image = apply_filters( 'wpml_translate_single_string', $parallax_one_logo->image_url, 'Parallax One -> Logos section', 'Logo image '.$parallax_one_logo->id ); 41 | } 42 | } 43 | 44 | if( !empty( $image ) ){ ?> 45 |
    • 46 | 48 | 49 | <?php esc_html_e( 'Logo', 'parallax-one' ); ?> 50 | 51 | 53 | <?php esc_html_e('Logo','parallax-one'); ?> 54 | 56 |
    • 57 | 60 |
    61 |
    62 | 64 |
    65 | 68 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/sections/parallax_one_map_section.php: -------------------------------------------------------------------------------- 1 | 4 | 14 | 15 |
    16 | 17 |
    18 |
    19 | 20 |
    21 | 22 |
    23 | 24 | 26 | 27 |
    28 | 29 |
    30 | 31 |
    32 | 33 |
    34 | 35 | 39 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/sections/parallax_one_our_services_section.php: -------------------------------------------------------------------------------- 1 | 4 | 'parallax_icon','icon_value' => 'icon-basic-webpage-multiple','title' => esc_html__('Lorem Ipsum','parallax-one'),'text' => esc_html__('Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla nec purus feugiat, molestie ipsum et, consequat nibh. Etiam non elit dui. Nullam vel eros sit amet arcu vestibulum accumsan in in leo.','parallax-one'), 'id' => 'parallax_one_56fd4d93f3013'), 10 | array('choice'=>'parallax_icon','icon_value' => 'icon-ecommerce-graph3','title' => esc_html__('Lorem Ipsum','parallax-one'),'text' => esc_html__('Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla nec purus feugiat, molestie ipsum et, consequat nibh. Etiam non elit dui. Nullam vel eros sit amet arcu vestibulum accumsan in in leo.','parallax-one'), 'id' => 'parallax_one_56fd4d94f3014'), 11 | array('choice'=>'parallax_icon','icon_value' => 'icon-basic-geolocalize-05','title' => esc_html__('Lorem Ipsum','parallax-one'),'text' => esc_html__('Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla nec purus feugiat, molestie ipsum et, consequat nibh. Etiam non elit dui. Nullam vel eros sit amet arcu vestibulum accumsan in in leo.','parallax-one'), 'id' => 'parallax_one_56fd4d95f3015') 12 | ) ) ); 13 | $parallax_one_services_pinterest = get_theme_mod('paralax_one_services_pinterest_style','5'); 14 | 15 | if(!empty($parallax_one_our_services_title) || !empty($parallax_one_our_services_subtitle) || !parallax_one_general_repeater_is_empty($parallax_one_services)){ 16 | parallax_hook_services_before(); ?> 17 | 18 |
    19 | 21 |
    22 |
    23 | 24 |
    25 | 27 |

    28 | 30 |

    31 | 35 |
    36 | 38 |
    39 | 41 |
    42 | 43 | 46 |
    47 | id; 51 | $choice = $parallax_one_service_box->choice; 52 | if( $choice == 'parallax_icon' ){ 53 | if( function_exists( 'pll__' ) ){ 54 | $icon = pll__( $parallax_one_service_box->icon_value ); 55 | } else { 56 | $icon = apply_filters( 'wpml_translate_single_string', $parallax_one_service_box->icon_value , 'Parallax One -> Services section', 'Service box icon '.$id ); 57 | } 58 | } 59 | if( $choice == 'parallax_image' ){ 60 | if( function_exists( 'pll__' ) ){ 61 | $image = pll__( $parallax_one_service_box->image_url ); 62 | } else { 63 | $image = apply_filters( 'wpml_translate_single_string', $parallax_one_service_box->image_url , 'Parallax One -> Services section', 'Service box image '.$id ); 64 | } 65 | } 66 | 67 | if( function_exists( 'pll__' ) ){ 68 | $title = pll__( $parallax_one_service_box->title ); 69 | $text = pll__( $parallax_one_service_box->text ); 70 | if(isset($parallax_one_service_box->link)){ 71 | $link = pll__( $parallax_one_service_box->link ); 72 | } 73 | } else { 74 | $title = apply_filters( 'wpml_translate_single_string', $parallax_one_service_box->title , 'Parallax One -> Services section', 'Service box title '.$parallax_one_service_box->id ); 75 | $text = apply_filters( 'wpml_translate_single_string', $parallax_one_service_box->text , 'Parallax One -> Services section', 'Service box text '.$parallax_one_service_box->id ); 76 | if(isset($parallax_one_service_box->link)){ 77 | $link = apply_filters( 'wpml_translate_single_string', $parallax_one_service_box->link , 'Parallax One -> Services section', 'Service box link '.$parallax_one_service_box->id ); 78 | } 79 | } 80 | 81 | if( ( !empty( $icon ) && $icon != 'No Icon' && $choice == 'parallax_icon' ) || ( !empty( $image ) && $choice == 'parallax_image' ) || !empty( $title ) || !empty( $text ) ){ ?> 82 |
    83 | 85 |
    86 | 93 |
    94 | 95 | 96 | 97 |
    98 | 100 |
    101 | 102 |
    103 | 111 | 112 | /> 113 | 114 | 116 | /> 117 | 125 |

    126 | 127 |

    128 | 130 |

    131 | 136 |

    137 | 140 |
    141 | 143 |
    144 | 147 |
    148 | 150 |
    151 |
    152 | 153 |
    154 | 155 | 159 |
    160 | 161 |
    162 |
    163 |
    164 |

    165 |
    166 |
    167 |
    168 |
    169 | 170 |
    171 | 174 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/sections/parallax_one_our_story_section.php: -------------------------------------------------------------------------------- 1 | 4 | 11 | 12 |
    13 | 14 |
    15 |
    16 |
    17 | 18 |
    '.esc_attr($parallax_one_our_story_title).'
    '; 22 | } else { 23 | echo '
    '.esc_html__('About','parallax-one').'
    '; 24 | } 25 | } elseif ( isset( $wp_customize ) ) { 26 | echo '
    '; 27 | } 28 | ?> 29 | 30 | 31 |
    32 | '.esc_attr($parallax_one_our_story_title).'
    '; 35 | } elseif ( isset( $wp_customize ) ) { 36 | echo '

    '; 37 | } 38 | ?> 39 | 40 | '.$parallax_one_our_story_text.'
    '; 44 | } elseif ( isset( $wp_customize ) ) { 45 | echo '
    '; 46 | } 47 | ?> 48 |
    49 |
    50 | 51 | 52 | 53 |
    54 | 55 | 59 | 60 |
    61 | 62 |
    63 |
    64 |

    65 |
    66 |
    67 | 68 |
    69 | 70 | 74 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/sections/parallax_one_our_team_section.php: -------------------------------------------------------------------------------- 1 | 4 | parallax_get_file('/images/team/1.jpg'),'title' => esc_html__('Albert Jacobs','parallax-one'),'subtitle' => esc_html__('Founder & CEO','parallax-one'), 'id' => 'parallax_one_56fe9796baca4'), 10 | array('image_url' => parallax_get_file('/images/team/2.jpg'),'title' => esc_html__('Tonya Garcia','parallax-one'),'subtitle' => esc_html__('Account Manager','parallax-one'), 'id' => 'parallax_one_56fe9798baca5'), 11 | array('image_url' => parallax_get_file('/images/team/3.jpg'),'title' => esc_html__('Linda Guthrie','parallax-one'),'subtitle' => esc_html__('Business Development','parallax-one'), 'id' => 'parallax_one_56fe9799baca6') 12 | ) ) ); 13 | 14 | if(!empty($parallax_one_our_team_title) || !empty($parallax_one_our_team_subtitle) || !parallax_one_general_repeater_is_empty($parallax_one_team_content) ){ 15 | parallax_hook_team_before(); ?> 16 |
    17 | 18 |
    19 |
    20 | 22 |
    23 | 25 |

    26 | 28 |

    29 | 33 |
    34 | 36 |
    37 | 39 |
    40 | 44 |
    45 | id ) ){ 51 | $id = $parallax_one_team_member->id; 52 | } 53 | 54 | if( !empty( $parallax_one_team_member->title ) ){ 55 | if( function_exists('pll__') ){ 56 | $title = pll__( $parallax_one_team_member->title ); 57 | } else { 58 | $title = apply_filters( 'wpml_translate_single_string', $parallax_one_team_member->title, 'Parallax One -> Team section', 'Team box title '.$id ); 59 | } 60 | } 61 | 62 | if( !empty( $parallax_one_team_member->subtitle ) ){ 63 | if( function_exists('pll__') ){ 64 | $subtitle = pll__($parallax_one_team_member->subtitle); 65 | } else { 66 | $subtitle = apply_filters( 'wpml_translate_single_string', $parallax_one_team_member->subtitle, 'Parallax One -> Team section', 'Team box subtitle '.$id ); 67 | } 68 | } 69 | 70 | if( !empty( $parallax_one_team_member->image_url ) ){ 71 | if( function_exists('pll__') ){ 72 | $image = pll__( $parallax_one_team_member->image_url ); 73 | } else{ 74 | $image = apply_filters( 'wpml_translate_single_string', $parallax_one_team_member->image_url, 'Parallax One -> Team section', 'Team box image '.$id ); 75 | } 76 | } 77 | 78 | if( !empty($image) || !empty($title) || !empty($subtitle) ){?> 79 |
    80 |
    81 |
    82 | 84 | > 85 | 88 | <?php esc_html_e('Avatar','parallax-one'); ?> 89 | 91 |
    92 | 93 | 95 |
    96 |
    97 | 99 |
    100 | subtitle) ){ ?> 104 |
    105 | social_repeater) ){ 109 | $socials = html_entity_decode( $parallax_one_team_member->social_repeater ); 110 | $icons_decoded = json_decode( $socials, true ); ?> 111 | 141 | 143 |
    144 |
    145 | 147 |
    148 |
    149 | 152 |
    153 | 155 |
    156 |
    157 | 158 |
    159 | 163 |
    164 | 165 |
    166 |
    167 |
    168 |

    169 |
    170 |
    171 |
    172 |
    173 | 174 |
    175 | 176 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/sections/parallax_one_ribbon_section.php: -------------------------------------------------------------------------------- 1 | 4 | '; 20 | parallax_hook_ribbon_top(); 21 | 22 | } else { 23 | if ( is_customize_preview() ) { 24 | echo '
    '; 25 | parallax_hook_ribbon_top(); 26 | } 27 | } 28 | 29 | if(!empty($parallax_one_ribbon_title) || !empty($parallax_one_button_text) || is_customize_preview()) { ?> 30 |
    31 |
    32 |
    33 |
    34 | 35 | '.wp_kses_post($parallax_one_ribbon_title).''; 38 | } elseif ( is_customize_preview() ) { 39 | echo '

    '; 40 | } 41 | 42 | 43 | if(!empty($parallax_one_button_text)){ ?> 44 | 48 | 50 | 51 | 53 | 54 |
    55 |
    56 |
    57 |
    58 | 59 |
    60 | 61 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/sidebar.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | 18 | 19 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/single-download.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 |
    18 |
    19 | 20 |
    21 |
    22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 |
    30 |
    31 | 32 |
    33 |
    34 | 35 | 36 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/single.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 |
    19 | 20 |
    21 | 22 |
    23 |
    24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 37 | 38 | 39 | 40 |
    41 |
    42 | 43 | 44 | 45 |
    46 | 47 |
    48 | 49 | 50 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/template-blog.php: -------------------------------------------------------------------------------- 1 | 'post', 'posts_per_page' => 6, 'paged' => ( get_query_var('paged') ? get_query_var('paged') : 1 ) ) ); 6 | include( get_home_template() ); 7 | wp_reset_postdata(); 8 | ?> -------------------------------------------------------------------------------- /content/themes/Parallax-One/template-contact.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |
    16 |
    17 | 18 |
    19 |
    20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 |
    28 |
    29 | 30 |
    31 |
    32 | 33 | 34 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/template-fullwidth.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 |
    18 |
    19 | 21 |
    22 |
    23 | 24 | 25 | 26 | 27 | 28 | 34 | 35 | 36 | 37 |
    38 |
    39 | 40 |
    41 |
    42 | 43 | 44 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/vendor/themeisle/inc/base.php: -------------------------------------------------------------------------------- 1 | '', 54 | 'store_name' => '', 55 | 'product_slug' => '', 56 | 'product_type' => 'theme', 57 | 'wordpress_available' => false, 58 | 'paid' => false, 59 | ) ); 60 | $this->product_slug = $args['product_slug']; 61 | $this->store_url = $args['store_url']; 62 | $this->store_name = $args['store_name']; 63 | $this->paid = ( bool ) $args['paid'] ; 64 | $this->wordpress_available = ( bool ) $args['wordpress_available'] ; 65 | $this->product_type = in_array( $args['product_type'], array( 66 | 'theme', 67 | 'plugin' 68 | ) ) ? $args['product_type'] : ""; 69 | if ( empty( $this->product_type ) ) { 70 | return false; 71 | } 72 | if ( $this->product_type === "theme" ) { 73 | $this->product_data = wp_get_theme( $this->product_slug ); 74 | $this->product_version = $this->product_data->get( "Version" ); 75 | $this->product_name = $this->product_data->get( "Name" ); 76 | 77 | } 78 | if ( $this->product_type === 'plugin' ) { 79 | $this->product_data = $this->get_plugin_data( $this->product_slug ); 80 | $this->product_version = $this->product_data["data"]['Version']; 81 | $this->product_name = $this->product_data["data"]['Name']; 82 | } 83 | if ( ! $this->wordpress_available ) { 84 | $logger = new THEMEISLE_LOGGER( $this->product_slug, $this->product_version ); 85 | $logger->start(); 86 | $licenser = new THEMEISLE_LICENSE( $this->product_name, $this->product_slug, $this->product_version, $this->product_type, $this->paid, $this->store_url, $this->product_data, $this->store_name ); 87 | $licenser->enable(); 88 | } 89 | 90 | } 91 | 92 | /** 93 | * @param string $slug Slug of the plugin to get the information for 94 | * 95 | * @return mixed $metadata The plugin metadata 96 | */ 97 | private function get_plugin_data( $slug ) { 98 | if ( ! function_exists( 'get_plugins' ) ) { 99 | require_once ABSPATH . 'wp-admin/includes/plugin.php'; 100 | } 101 | $plugins = get_plugins(); 102 | foreach ( $plugins as $plugin_file => $plugin_data ) { 103 | if ( strpos( $plugin_file, $slug ) !== false ) { 104 | return array( "basename" => $plugin_file, "data" => $plugin_data ); 105 | } 106 | } 107 | 108 | } 109 | 110 | } 111 | endif; 112 | -------------------------------------------------------------------------------- /content/themes/Parallax-One/vendor/themeisle/inc/log.php: -------------------------------------------------------------------------------- 1 | product_slug = $slug; 35 | $this->product_version = $version; 36 | $this->product_cron = self::key_ready_name( $this->product_slug ) . "_log_activity"; 37 | } 38 | 39 | /** 40 | * @param string $string the String to be normalized for cron handler 41 | * 42 | * @return string $name the normalized string 43 | */ 44 | static function key_ready_name( $string ) { 45 | return str_replace( "-", "_", strtolower( trim( $string ) ) ); 46 | } 47 | 48 | /** 49 | * Start the cron to send the log. It will randomize the interval in order to not send all the logs at the same time. 50 | */ 51 | public function start() { 52 | if ( ! wp_next_scheduled( $this->product_cron ) ) { 53 | wp_schedule_single_event( time() + ( rand( 15, 24 ) * 3600 ), $this->product_cron ); 54 | } 55 | add_action( $this->product_cron, array( $this, "send_log" ) ); 56 | } 57 | 58 | /** 59 | * Send the statistics to the api endpoint 60 | */ 61 | public function send_log() { 62 | wp_remote_post( $this->logging_url, array( 63 | 'method' => 'POST', 64 | 'timeout' => 3, 65 | 'redirection' => 5, 66 | 'headers' => array( "X-ThemeIsle-Event" => "log_site" ), 67 | 'body' => array( 68 | 'site' => get_site_url(), 69 | 'product' => $this->product_slug, 70 | 'version' => $this->product_version 71 | ), 72 | ) ); 73 | } 74 | 75 | } 76 | endif; -------------------------------------------------------------------------------- /content/themes/Parallax-One/vendor/themeisle/load.php: -------------------------------------------------------------------------------- 1 | $this_themeisle_sdk_version, 28 | "sdk_path" => $this_themeisle_sdk_path 29 | ); 30 | // load the latest sdk version from the active Themeisle products 31 | if ( ! function_exists( "themeisle_sdk_load" ) ) : 32 | function themeisle_sdk_load() { 33 | global $themeisle_sdk_products; 34 | global $this_themeisle_sdk_version; 35 | $max_version = reset( $themeisle_sdk_products ); 36 | if ( ! isset ( $max_version ["version"] ) ) { 37 | $max_version = $this_themeisle_sdk_version; 38 | } else{ 39 | $max_version = $max_version["version"]; 40 | } 41 | 42 | $path_to_load = ""; 43 | foreach ( $themeisle_sdk_products as $product ) { 44 | if ( version_compare( $product["version"], $max_version ) >= 0 ) { 45 | $path_to_load = $product["sdk_path"]; 46 | } 47 | } 48 | include $path_to_load . "/start.php"; 49 | foreach ( $themeisle_sdk_products as $registered_product ) { 50 | ${$registered_product["product_data"]["product_slug"] . "_themeisle_sdk"} = new THEMEISLE_SDK( $registered_product ); 51 | } 52 | } 53 | endif; 54 | //register the product which will use the sdk 55 | if ( ! function_exists( "themeisle_sdk_register" ) ) : 56 | function themeisle_sdk_register( $array ) { 57 | global $themeisle_sdk_products; 58 | foreach ( $themeisle_sdk_products as $key => $product ) { 59 | if ( strpos( $product["sdk_path"], $array["product_slug"] ) !== false ) { 60 | $themeisle_sdk_products[ $key ]["product_data"] = $array; 61 | } 62 | } 63 | } 64 | endif; 65 | add_action( "wp_loaded", "themeisle_sdk_load" ); -------------------------------------------------------------------------------- /content/themes/Parallax-One/vendor/themeisle/start.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /content/uploads/2016/09/aws-1-1024x649.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/aws-1-1024x649.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/aws-1-150x150.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/aws-1-150x150.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/aws-1-268x273.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/aws-1-268x273.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/aws-1-300x190.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/aws-1-300x190.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/aws-1-500x233.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/aws-1-500x233.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/aws-1-60x62.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/aws-1-60x62.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/aws-1-730x340.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/aws-1-730x340.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/aws-1-75x75.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/aws-1-75x75.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/aws-1-768x487.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/aws-1-768x487.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/aws-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/aws-1.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/docker-150x150.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/docker-150x150.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/docker-268x273.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/docker-268x273.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/docker-300x186.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/docker-300x186.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/docker-500x233.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/docker-500x233.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/docker-60x62.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/docker-60x62.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/docker-730x340.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/docker-730x340.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/docker-75x75.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/docker-75x75.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/docker-768x475.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/docker-768x475.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/docker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/docker.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/git-150x150.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/git-150x150.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/git-268x273.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/git-268x273.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/git-300x186.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/git-300x186.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/git-500x233.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/git-500x233.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/git-60x62.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/git-60x62.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/git-730x340.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/git-730x340.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/git-75x75.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/git-75x75.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/git-768x475.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/git-768x475.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/git.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/git.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/header-1024x162.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/header-1024x162.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/header-150x150.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/header-150x150.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/header-268x273.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/header-268x273.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/header-300x48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/header-300x48.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/header-500x233.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/header-500x233.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/header-60x62.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/header-60x62.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/header-730x340.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/header-730x340.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/header-75x75.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/header-75x75.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/header-768x122.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/header-768x122.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/header.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/logo-1-150x91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/logo-1-150x91.png -------------------------------------------------------------------------------- /content/uploads/2016/09/logo-1-268x91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/logo-1-268x91.png -------------------------------------------------------------------------------- /content/uploads/2016/09/logo-1-300x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/logo-1-300x57.png -------------------------------------------------------------------------------- /content/uploads/2016/09/logo-1-60x62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/logo-1-60x62.png -------------------------------------------------------------------------------- /content/uploads/2016/09/logo-1-75x75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/logo-1-75x75.png -------------------------------------------------------------------------------- /content/uploads/2016/09/logo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/logo-1.png -------------------------------------------------------------------------------- /content/uploads/2016/09/logo-150x91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/logo-150x91.png -------------------------------------------------------------------------------- /content/uploads/2016/09/logo-268x91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/logo-268x91.png -------------------------------------------------------------------------------- /content/uploads/2016/09/logo-300x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/logo-300x57.png -------------------------------------------------------------------------------- /content/uploads/2016/09/logo-60x62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/logo-60x62.png -------------------------------------------------------------------------------- /content/uploads/2016/09/logo-75x75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/logo-75x75.png -------------------------------------------------------------------------------- /content/uploads/2016/09/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/logo.png -------------------------------------------------------------------------------- /content/uploads/2016/09/multi-server-150x150.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/multi-server-150x150.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/multi-server-268x273.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/multi-server-268x273.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/multi-server-300x186.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/multi-server-300x186.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/multi-server-500x233.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/multi-server-500x233.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/multi-server-60x62.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/multi-server-60x62.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/multi-server-730x340.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/multi-server-730x340.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/multi-server-75x75.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/multi-server-75x75.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/multi-server-768x476.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/multi-server-768x476.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/multi-server.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/multi-server.jpg -------------------------------------------------------------------------------- /content/uploads/2016/09/plesk_service_icon_rgb-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/plesk_service_icon_rgb-150x150.png -------------------------------------------------------------------------------- /content/uploads/2016/09/plesk_service_icon_rgb-268x273.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/plesk_service_icon_rgb-268x273.png -------------------------------------------------------------------------------- /content/uploads/2016/09/plesk_service_icon_rgb-300x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/plesk_service_icon_rgb-300x300.png -------------------------------------------------------------------------------- /content/uploads/2016/09/plesk_service_icon_rgb-401x233.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/plesk_service_icon_rgb-401x233.png -------------------------------------------------------------------------------- /content/uploads/2016/09/plesk_service_icon_rgb-401x340.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/plesk_service_icon_rgb-401x340.png -------------------------------------------------------------------------------- /content/uploads/2016/09/plesk_service_icon_rgb-60x62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/plesk_service_icon_rgb-60x62.png -------------------------------------------------------------------------------- /content/uploads/2016/09/plesk_service_icon_rgb-75x75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/plesk_service_icon_rgb-75x75.png -------------------------------------------------------------------------------- /content/uploads/2016/09/plesk_service_icon_rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/wordpress-aws-scaler/5483bc27dc68922a8e2bb9bb54bb1f007c12341e/content/uploads/2016/09/plesk_service_icon_rgb.png -------------------------------------------------------------------------------- /docker/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | DOMAIN_NO_PROTOCOL=$(echo "$WORDPRESS_URL" | sed 's~http[s]*://~~g') 3 | wp search-replace http://local.wordpress.dev "$WORDPRESS_URL" --recurse-objects --allow-root 4 | if [[ -n $DOMAIN_NO_PROTOCOL ]]; then 5 | wp search-replace local.wordpress.dev "$DOMAIN_NO_PROTOCOL" --recurse-objects --allow-root 6 | fi -------------------------------------------------------------------------------- /docker/docker-entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | : "${WORDPRESS_TITLE:=WordPress site}" 4 | : "${WORDPRESS_URL:=http://localhost:8080}" 5 | 6 | : "${WORDPRESS_DB_PREFIX:=wp_}" 7 | 8 | : "${WORDPRESS_USER_NAME:=admin}" 9 | : "${WORDPRESS_USER_PASSWORD:=CHANGEME_PLEASE}" 10 | : "${WORDPRESS_USER_EMAIL:=admin@admin.dev}" 11 | 12 | : "${NEWRELIC_NAME:=WordPress AWS Scaler}" 13 | 14 | : "${S3_BUCKET:=WordPress AWS Scaler}" 15 | : "${S3_REGION:=EU}" 16 | 17 | if [[ -z "$WORDPRESS_DB_HOST" || -z "$WORDPRESS_DB_USER" || -z "$WORDPRESS_DB_PASSWORD" || -z "$WORDPRESS_DB_NAME" ]]; then 18 | echo >&2 'error: missing required database environment variables' 19 | echo >&2 ' Did you forget to -e WORDPRESS_DB_HOST=... ?' 20 | exit 1 21 | fi 22 | 23 | if [ `find /usr/src/wordpress -prune -empty` ]; then 24 | echo >&2 'Downloading WordPress' 25 | wp core download --allow-root 26 | fi 27 | 28 | if [ ! -f /usr/src/wordpress/wp-config.php ]; then 29 | if [[ -n "$S3_KEY" && -n "$S3_SECRET" ]]; then 30 | S3_ENABLED=true 31 | 32 | read -r -d '' extra <&2 "WordPress config has been successfully been created in $(pwd)" 56 | fi 57 | 58 | if ! $(wp core is-installed --allow-root); then 59 | if [ -f /data.sql ]; then 60 | echo >&2 "Restoring database" 61 | 62 | wp db import /data.sql --allow-root 63 | wp core update-db --allow-root 64 | fi 65 | 66 | if ! $(wp core is-installed --allow-root); then 67 | echo >&2 "Installing WordPress in $(pwd)" 68 | wp core install --url="$WORDPRESS_URL" --title="$WORDPRESS_TITLE" --admin_user="$WORDPRESS_USER_NAME" --admin_password="$WORDPRESS_USER_PASSWORD" --admin_email="$WORDPRESS_USER_EMAIL" --allow-root 69 | fi 70 | 71 | echo >&2 "Installing WordPress ended" 72 | fi 73 | 74 | if [ "$NEWRELIC_KEY" ]; then 75 | echo newrelic-php5 newrelic-php5/application-name string "$NEWRELIC_NAME" | debconf-set-selections 76 | echo newrelic-php5 newrelic-php5/license-key string "$NEWRELIC_KEY" | debconf-set-selections 77 | 78 | apt-get update && apt-get install -y newrelic-php5 79 | fi 80 | 81 | if [ -f /custom.sh ]; then 82 | export WORDPRESS_URL 83 | /custom.sh 84 | fi 85 | 86 | chown -R www-data:www-data /usr/src/wordpress 87 | 88 | if [ "$S3_ENABLED" ]; then 89 | wp plugin install https://github.com/humanmade/S3-Uploads/archive/master.zip --activate --allow-root 90 | 91 | if [[ -n "$S3_BUCKET_URL" ]]; then 92 | DOMAIN_NO_PROTOCOL=$(echo "$WORDPRESS_URL" | sed 's~http[s]*://~~g') 93 | S3_NO_PROTOCOL=$(echo "$S3_BUCKET_URL" | sed 's~http[s]*://~~g') 94 | DOMAIN_NO_PROTOCOL+='/wp-content/uploads/' 95 | S3_NO_PROTOCOL+='/uploads/' 96 | nohup sh -c "wp s3-uploads migrate-attachments --delete-local --allow-root && wp search-replace '$DOMAIN_NO_PROTOCOL' '$S3_NO_PROTOCOL' --allow-root" 97 | else 98 | nohup wp s3-uploads migrate-attachments --delete-local --allow-root & 99 | fi 100 | fi 101 | 102 | service php7.0-fpm restart 103 | 104 | exec "$@" 105 | -------------------------------------------------------------------------------- /docker/mu-21d059a5-6614bceb-ed85e357-bd885a86: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /docker/nginx-site.conf: -------------------------------------------------------------------------------- 1 | server { 2 | server_name localhost; 3 | listen 80 default; ## listen for ipv4; this line is default and implied 4 | listen [::]:80 default ipv6only=on; ## listen for ipv6 5 | 6 | root /usr/src/wordpress; 7 | index index.php index.html index.htm; 8 | 9 | sendfile off; 10 | 11 | location / { 12 | # First attempt to serve request as file, then 13 | # as directory, then fall back to index.html 14 | try_files $uri $uri/ /index.php?q=$uri&$args; 15 | } 16 | 17 | if ($request_uri ~* ^/robots.txt) { 18 | rewrite ^/(.*)$ /index.php$is_args$args; 19 | } 20 | 21 | location ~* wp-config.php { 22 | deny all; 23 | return 404; 24 | } 25 | 26 | 27 | # Add trailing slash to */wp-admin requests. 28 | rewrite /wp-admin$ $scheme://$host$uri/ permanent; 29 | 30 | # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 31 | # 32 | location ~ \.php$ { 33 | include snippets/fastcgi-php.conf; 34 | 35 | fastcgi_buffer_size 128k; 36 | fastcgi_buffers 256 16k; 37 | fastcgi_busy_buffers_size 256k; 38 | fastcgi_temp_file_write_size 256k; 39 | 40 | fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; 41 | fastcgi_param REMOTE_ADDR $http_x_real_ip; 42 | 43 | fastcgi_pass unix:/run/php/php7.0-fpm.sock; 44 | } 45 | 46 | # deny access to all files starting with . 47 | location ~ /\. { 48 | deny all; 49 | access_log off; 50 | log_not_found off; 51 | } 52 | 53 | location ~* /wp-content/.*\.php$ { 54 | deny all; 55 | return 403; 56 | } 57 | 58 | location ~* \.(jpg|jpeg|gif|png|css|js|ico|xml)$ { 59 | access_log off; 60 | log_not_found off; 61 | expires 30d; 62 | } 63 | } -------------------------------------------------------------------------------- /docker/nginx.conf: -------------------------------------------------------------------------------- 1 | user www-data; 2 | worker_processes auto; 3 | pid /run/nginx.pid; 4 | include /etc/nginx/modules-enabled/*.conf; 5 | 6 | events { 7 | worker_connections 2048; 8 | multi_accept on; 9 | use epoll; 10 | } 11 | 12 | http { 13 | 14 | ## 15 | # Basic Settings 16 | ## 17 | 18 | sendfile on; 19 | tcp_nopush on; 20 | tcp_nodelay on; 21 | keepalive_timeout 65; 22 | types_hash_max_size 2048; 23 | # server_tokens off; 24 | 25 | # server_names_hash_bucket_size 64; 26 | # server_name_in_redirect off; 27 | 28 | include /etc/nginx/mime.types; 29 | default_type application/octet-stream; 30 | 31 | ## 32 | # SSL Settings 33 | ## 34 | 35 | ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE 36 | ssl_prefer_server_ciphers on; 37 | 38 | ## 39 | # Logging Settings 40 | ## 41 | 42 | access_log /var/log/nginx/access.log; 43 | error_log /var/log/nginx/error.log; 44 | 45 | ## 46 | # Gzip Settings 47 | ## 48 | 49 | gzip on; 50 | gzip_disable "msie6"; 51 | 52 | gzip_vary on; 53 | gzip_min_length 1000; 54 | gzip_proxied any; 55 | gzip_comp_level 5; 56 | gzip_buffers 16 8k; 57 | gzip_http_version 1.1; 58 | gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript; 59 | 60 | open_file_cache max=1000 inactive=20s; 61 | open_file_cache_valid 60s; 62 | open_file_cache_min_uses 5; 63 | open_file_cache_errors off; 64 | 65 | client_body_buffer_size 128k; 66 | client_max_body_size 10m; 67 | client_header_buffer_size 1k; 68 | large_client_header_buffers 4 4k; 69 | output_buffers 1 32k; 70 | postpone_output 1460; 71 | 72 | ## 73 | # Virtual Host Configs 74 | ## 75 | 76 | include /etc/nginx/conf.d/*.conf; 77 | include /etc/nginx/sites-enabled/*; 78 | } -------------------------------------------------------------------------------- /docker/php-opcache.ini: -------------------------------------------------------------------------------- 1 | ; configuration for php opcache module 2 | priority=10 3 | zend_extension=opcache.so 4 | 5 | opcache.revalidate_freq=0 6 | opcache.validate_timestamps=0 7 | opcache.max_accelerated_files=7963 8 | opcache.memory_consumption=192 9 | opcache.interned_strings_buffer=16 10 | opcache.fast_shutdown=1 -------------------------------------------------------------------------------- /pleskwp.ini: -------------------------------------------------------------------------------- 1 | AMI 'ami-64385917' 2 | REGION 'eu-west-1' 3 | INSTANCE_TYPE 'm3.medium' 4 | VPC_IP_BLOCK '172.31.0.0/16' 5 | DB_INSTANCE_TYPE 'db.m3.medium' 6 | DB_ENGINE 'mariadb' 7 | DB_USERNAME 'wordpress' 8 | DB_PASSWORD '' 9 | EC2_MIN_INSTANCES '1' 10 | NEWRELIC_KEY '' 11 | NEWRELIC_NAME 'wpscale' 12 | WORDPRESS_TITLE 'WordPress Scaled on AWS with Plesk' 13 | WORDPRESS_DB_PREFIX 'wp_' 14 | WORDPRESS_USER_NAME 'wordpress' 15 | WORDPRESS_USER_PASSWORD '' 16 | WORDPRESS_USER_EMAIL '' 17 | DOMAIN_NAME 'scaler.plesk-demo.com' 18 | ---END-OF-FILE--- 19 | 20 | --------------------------------------------------------------------------------