├── .distignore
├── .gitignore
├── .jshintrc
├── .travis.yml
├── 404.php
├── CHANGELOG.md
├── Gruntfile.js
├── archive-download.php
├── archive.php
├── bin
└── wraith.sh
├── class-tgm-plugin-activation.php
├── comments.php
├── content-archive-download.php
├── content-contact.php
├── content-none.php
├── content-page-no-title.php
├── content-page.php
├── content-search.php
├── content-single-download.php
├── content-single.php
├── content.php
├── css
├── bootstrap.min.css
├── custom-editor-style.css
├── font-awesome.css
├── font-awesome.min.css
└── ielt9.css
├── fonts
├── FontAwesome.otf
├── fontawesome-webfont.eot
├── fontawesome-webfont.svg
├── fontawesome-webfont.ttf
├── fontawesome-webfont.woff
├── fontawesome-webfont.woff2
├── stamp-icons.eot
├── stamp-icons.svg
├── stamp-icons.ttf
└── stamp-icons.woff
├── footer.php
├── front-page.php
├── functions.php
├── grunt
└── version.js
├── 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
├── inc
├── admin
│ ├── class-remote-notification-client.php
│ └── welcome-screen
│ │ ├── css
│ │ └── welcome.css
│ │ ├── img
│ │ └── ajax-loader.gif
│ │ ├── js
│ │ └── welcome.js
│ │ ├── sections
│ │ ├── changelog.php
│ │ ├── free_pro.php
│ │ ├── getting-started.php
│ │ └── github.php
│ │ └── welcome-screen.php
├── alpha-control
│ ├── css
│ │ └── style.css
│ ├── img
│ │ └── transparency-grid.png
│ ├── js
│ │ └── script.js
│ └── parallax-one-alpha-control.php
├── class
│ ├── class-ti-notify.php
│ ├── parallax-one-info.php
│ └── parallax-one-text-control.php
├── customizer-info
│ ├── class
│ │ ├── class-customizer-info-section.php
│ │ └── class-singleton-customizer-info-section.php
│ └── js
│ │ └── customizer-info-controls.js
├── customizer-repeater
│ ├── class
│ │ └── customizer-repeater-control.php
│ ├── css
│ │ ├── admin-style.css
│ │ └── fontawesome-iconpicker.min.css
│ ├── functions.php
│ ├── inc
│ │ ├── customizer.php
│ │ └── icons.php
│ └── js
│ │ ├── customizer_repeater.js
│ │ ├── fontawesome-iconpicker.js
│ │ └── fontawesome-iconpicker.min.js
├── customizer.php
├── extras.php
├── hooks.php
├── icon-picker
│ ├── css
│ │ ├── iconpicker.min.css
│ │ └── stamp-icons.min.css
│ └── js
│ │ ├── iconpicker-control.js
│ │ ├── iconpicker-engine.js
│ │ └── iconpicker-engine.min.js
├── jetpack.php
├── template-tags.php
└── translations
│ ├── general.php
│ ├── translations-contact-section.php
│ ├── translations-footer-socials.php
│ ├── translations-logos-section.php
│ ├── translations-services-section.php
│ ├── translations-team-section.php
│ └── translations-testimonials-section.php
├── index.php
├── js
├── bootstrap.js
├── bootstrap.min.js
├── custom.all.js
├── custom.home.js
├── customizer.js
├── html5shiv.js
├── html5shiv.min.js
├── parallax_one_customizer.js
├── plugin.home.js
├── scrollReveal.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
├── package.json
├── page.php
├── phpcs.xml
├── 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-no-title.php
├── template-fullwidth.php
└── wpml-config.xml
/.distignore:
--------------------------------------------------------------------------------
1 | .git
2 | .distignore
3 | .gitignore
4 | .travis.yml
5 | .jshintrc
6 | Gruntfile.js
7 | grunt
8 | phpcs.xml
9 | node_modules
10 | logs
11 | package.json
12 | npm-debug.log
13 | bin
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # IntelliJ project files
2 | .idea
3 | *.iml
4 | out
5 | gen
6 | node_modules
7 | logs
8 | npm-debug.log
--------------------------------------------------------------------------------
/.jshintrc:
--------------------------------------------------------------------------------
1 | {
2 | "boss": true,
3 | "curly": true,
4 | "eqeqeq": true,
5 | "eqnull": true,
6 | "expr": true,
7 | "immed": true,
8 | "noarg": true,
9 | "nonbsp": true,
10 | "onevar": true,
11 | "quotmark": "single",
12 | "trailing": true,
13 | "undef": true,
14 | "unused": true,
15 | "browser": true,
16 | "globals": {
17 | "_": false,
18 | "Backbone": false,
19 | "jQuery": false,
20 | "JSON": false,
21 | "wp": false
22 | }
23 | }
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | language: php
2 |
3 | ## PHP versions to test against
4 | php:
5 | - "7.1"
6 | - "7.0"
7 | - "5.6"
8 | - "5.5"
9 | - "5.4"
10 | matrix:
11 | include:
12 | - php: "5.6"
13 | before_install: chmod +x bin/wraith.sh
14 | install: true
15 | before_script:
16 | env: TEST_SUITE=Wraith_Visual_Regression_Testing WRAITH_FAIL=5
17 | script: ./bin/wraith.sh
18 | - php: '5.3'
19 | dist: precise
20 | sudo: false
21 | dist: precise
22 | env:
23 | - WP_VERSION=master WP_MULTISITE=0
24 | install:
25 | - . $HOME/.nvm/nvm.sh
26 | - nvm install stable
27 | - nvm use stable
28 | - npm install
29 | - npm install grunt-cli -g
30 | before_script:
31 | ## Install the wordpress latest version
32 | - export WP_DEVELOP_DIR=/tmp/wordpress/
33 | - mkdir -p $WP_DEVELOP_DIR
34 | - git clone --depth=1 --branch="$WP_VERSION" git://develop.git.wordpress.org/ $WP_DEVELOP_DIR
35 | - theme_slug=$(basename $(pwd))
36 | - theme_dir=$WP_DEVELOP_DIR/src/wp-content/themes/$theme_slug
37 | - cd ..
38 | - mv $theme_slug $theme_dir
39 | - cd $WP_DEVELOP_DIR
40 | - cp wp-tests-config-sample.php wp-tests-config.php
41 | - sed -i "s/youremptytestdbnamehere/wordpress_test/" wp-tests-config.php
42 | - sed -i "s/yourusernamehere/root/" wp-tests-config.php
43 | - sed -i "s/yourpasswordhere//" wp-tests-config.php
44 | - mysql -e 'CREATE DATABASE wordpress_test;' -uroot
45 |
46 | ## install PHPCS and Wordpress standards
47 | - export PATH="$HOME/.composer/vendor/bin:$PATH"
48 | - composer global require "squizlabs/php_codesniffer=2.9.0"
49 | - mkdir wordpress-coding-standards && curl -L https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/archive/master.tar.gz | tar xz --strip-components=1 -C wordpress-coding-standards
50 | - phpenv rehash
51 | - phpcs --config-set installed_paths $WP_DEVELOP_DIR/wordpress-coding-standards
52 | - phpenv rehash
53 | - cd $theme_dir
54 |
55 | script:
56 | grunt travis
--------------------------------------------------------------------------------
/404.php:
--------------------------------------------------------------------------------
1 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
20 |
21 |
22 |
23 | ';
29 |
30 | if ( have_posts() ) {
31 |
32 | echo '';
36 |
37 | while ( have_posts() ) {
38 | the_post();
39 |
40 | /**
41 | * Include the Post-Format-specific template for the content.
42 | * If you want to override this in a child theme, then include a file
43 | * called content-___.php (where ___ is the Post Format name) and that will be used instead.
44 | */
45 | get_template_part( 'content', 'archive-download' );
46 |
47 | }
48 |
49 | the_posts_navigation();
50 |
51 | } else {
52 |
53 | get_template_part( 'content', 'none' );
54 | }
55 | ?>
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/archive.php:
--------------------------------------------------------------------------------
1 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 | ';
32 |
33 | if ( have_posts() ) {
34 |
35 | echo '';
39 |
40 | while ( have_posts() ) {
41 | the_post();
42 | parallax_hook_entry_before();
43 | /**
44 | * Include the Post-Format-specific template for the content.
45 | * If you want to override this in a child theme, then include a file
46 | * called content-___.php (where ___ is the Post Format name) and that will be used instead.
47 | */
48 | get_template_part( 'content', get_post_format() );
49 | parallax_hook_entry_after();
50 | }
51 | the_posts_navigation();
52 |
53 | } else {
54 | get_template_part( 'content', 'none' );
55 | }
56 | ?>
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
--------------------------------------------------------------------------------
/bin/wraith.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | WRAITH_SLUG=$(node -pe "require('./package.json').wraithSlug")
3 | WRAITH_FAIL=${WRAITH_FAIL:-5}
4 | body="{
5 | 'request': {
6 | 'travis_event_type': '$TRAVIS_EVENT_TYPE',
7 | 'travis_pull_request': '$TRAVIS_PULL_REQUEST',
8 | 'travis_pull_request_branch': '$TRAVIS_PULL_REQUEST_BRANCH',
9 | 'travis_pull_request_slug': '$TRAVIS_PULL_REQUEST_SLUG',
10 | 'travis_repo_slug': '$TRAVIS_PULL_REQUEST_SLUG',
11 | 'travis_branch': '$TRAVIS_PULL_REQUEST_BRANCH',
12 | 'wraithSlug': $WRAITH_SLUG,
13 | 'wraithFail': $WRAITH_FAIL
14 | }
15 | }"
16 |
17 | echo "Triggering build of $TRAVIS_REPO_SLUG branch $TRAVIS_BRANCH on Travis. Calling Wraith API ..."
18 |
19 | output=$(curl -sw "%{http_code}" -X POST \
20 | -H "Content-Type: application/json" \
21 | -H "Accept: application/json" \
22 | -H "Travis-API-Version: 3" \
23 | -d "${body//\'/\"}" \
24 | 'http://wraith.themeisle.com?api&travis')
25 |
26 | http_code="${output:${#output}-3}"
27 | if [ ${#output} -eq 3 ]; then
28 | body=""
29 | else
30 | body="${output:0:${#output}-3}"
31 | fi
32 |
33 | if [ $http_code != 200 ]; then
34 | echo "$output";
35 | exit 1
36 | else
37 | echo "$output";
38 | exit 0
39 | fi
--------------------------------------------------------------------------------
/comments.php:
--------------------------------------------------------------------------------
1 |
20 |
21 |
104 |
105 |
--------------------------------------------------------------------------------
/content-archive-download.php:
--------------------------------------------------------------------------------
1 |
8 |
9 | >
10 |
11 |
12 |
16 |
21 |
22 |
23 |
29 |
30 | '
' . esc_html__( 'Pages:', 'parallax-one' ),
34 | 'after' => '
',
35 | )
36 | );
37 | ?>
38 |
39 |
40 |
43 |
44 |
45 |
--------------------------------------------------------------------------------
/content-search.php:
--------------------------------------------------------------------------------
1 |
10 |
11 | >
12 |
13 |
81 |
82 | post_content, '' );
84 | if ( $ismore ) :
85 | the_content();
86 | else :
87 | the_excerpt();
88 | endif;
89 | ?>
90 |
91 | '
' . esc_html__( 'Pages:', 'parallax-one' ),
95 | 'after' => '
',
96 | )
97 | );
98 | ?>
99 |
100 |
101 |
102 |
--------------------------------------------------------------------------------
/content-single-download.php:
--------------------------------------------------------------------------------
1 |
8 |
9 | >
10 |
15 |
16 |
17 |
18 |
19 |
25 |
26 |
27 |
28 | '
' . esc_html__( 'Pages:', 'parallax-one' ),
32 | 'after' => '
',
33 | )
34 | );
35 | ?>
36 |
37 |
38 |
41 |
42 |
--------------------------------------------------------------------------------
/content-single.php:
--------------------------------------------------------------------------------
1 |
8 |
9 | >
10 |
29 |
30 |
31 |
32 | '
' . esc_html__( 'Pages:', 'parallax-one' ),
36 | 'after' => '
',
37 | )
38 | );
39 | ?>
40 |
41 |
42 |
45 |
46 |
--------------------------------------------------------------------------------
/content.php:
--------------------------------------------------------------------------------
1 |
8 |
9 | title="">
10 |
11 |
89 |
90 | post_content, '' );
92 | if ( $ismore ) :
93 | the_content(
94 | sprintf( /* translators: %s is post name in text reader */
95 | esc_html__( 'Read more %s ...', 'parallax-one' ),
96 | /* translators: %s is post title */
97 | sprintf(
98 | '
%s ',
99 | esc_html__( 'about ', 'parallax-one' ) . get_the_title()
100 | )
101 | )
102 | );
103 | else :
104 | the_excerpt();
105 | endif;
106 | ?>
107 |
108 | '
' . esc_html__( 'Pages:', 'parallax-one' ),
112 | 'after' => '
',
113 | )
114 | );
115 | ?>
116 |
117 |
118 |
119 |
--------------------------------------------------------------------------------
/css/custom-editor-style.css:
--------------------------------------------------------------------------------
1 | body {
2 | color: #000;
3 | font-family: "Open Sans", Helvetica Neue, Sans-serif;
4 | }
5 |
6 | a {
7 | color: #008ed6;
8 | text-decoration: none;
9 | -webkit-transition: all ease 0.25s;
10 | transition: all ease 0.25s;
11 | }
12 |
13 | a:hover {
14 | color: #008ed6;
15 | text-decoration: none;
16 | }
17 |
18 | a:focus {
19 | outline: 1px dotted #008ed6;
20 | text-decoration: none;
21 | }
22 |
23 | /* HEADINGS */
24 | h1,
25 | h2 {
26 | font-family: "Cabin", Helvetica Neue, Sans-serif;
27 | font-weight: 400;
28 | }
29 |
30 | h1 {
31 | font-size: 36px;
32 | line-height: 40px;
33 | -ms-word-wrap: break-word;
34 | word-wrap: break-word;
35 | }
36 |
37 | h2 {
38 | font-size: 30px;
39 | line-height: 34px;
40 | -ms-word-wrap: break-word;
41 | word-wrap: break-word;
42 | }
43 |
44 | h3 {
45 | font-size: 24px;
46 | line-height: 28px;
47 | -ms-word-wrap: break-word;
48 | word-wrap: break-word;
49 | }
50 |
51 | h4 {
52 | font-size: 18px;
53 | line-height: 22px;
54 | -ms-word-wrap: break-word;
55 | word-wrap: break-word;
56 | }
57 |
58 | h5 {
59 | font-size: 14px;
60 | line-height: 18px;
61 | -ms-word-wrap: break-word;
62 | word-wrap: break-word;
63 | }
64 |
65 | blockquote:before,
66 | blockquote:after,
67 | q:before,
68 | q:after {
69 | content: "";
70 | }
71 |
72 | blockquote,
73 | q {
74 | quotes: "" "";
75 | }
76 |
77 | hr {
78 | height: 1px;
79 | margin-bottom: 1.5em;
80 | border: 0;
81 | background-color: #ccc;
82 | }
83 |
84 | ul,
85 | ol {
86 | margin: 0 0 1.5em 0;
87 | padding-left: 20px;
88 | }
89 |
90 | ul {
91 | list-style: disc;
92 | }
93 |
94 | ol {
95 | list-style: decimal;
96 | }
97 |
98 | li > ul,
99 | li > ol {
100 | margin-bottom: 0;
101 | margin-left: 1.5em;
102 | }
103 |
104 | dt {
105 | font-weight: bold;
106 | }
107 |
108 | dd {
109 | margin: 0 1.5em 1.5em;
110 | }
111 |
112 | img {
113 | max-width: 100%;
114 | height: auto;
115 | border: 0;
116 | -ms-interpolation-mode: bicubic;
117 | vertical-align: middle;
118 | }
119 |
120 | table {
121 | width: 100%;
122 | margin: 0 0 1.5em;
123 | }
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: #666;
139 | }
140 |
141 | dfn,
142 | cite,
143 | em,
144 | i {
145 | font-style: italic;
146 | }
147 |
148 | blockquote {
149 | margin: 0 0 20px;
150 | margin-bottom: 1.5em;
151 | padding: 15px 20px;
152 | border-left: 5px solid #eee;
153 | font-size: 17.5px;
154 | font-weight: 300;
155 | line-height: 24px;
156 | }
157 |
158 | blockquote p {
159 | color: #313131;
160 | font-weight: 300;
161 | }
162 |
163 | address {
164 | margin: 0 0 1.5em;
165 | }
166 |
167 | pre {
168 | overflow: auto;
169 | max-width: 100%;
170 | margin-bottom: 1.6em;
171 | padding: 1.6em;
172 | border: 1px solid #e7e7e7;
173 | background: #eee;
174 | background: #fafafa;
175 | font-family: "Courier 10 Pitch", Courier, monospace;
176 | font-size: 15px;
177 | font-size: 0.9375rem;
178 | line-height: 1.6;
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 | padding: 10px 30px 10px 30px;
211 | border: none;
212 | border: none;
213 | border-radius: 3px;
214 | color: #fff;
215 | background-color: #00a5f9;
216 | background-image: url(images/tr-btn.png);
217 | background-repeat: repeat-x;
218 | background-size: contain;
219 | text-shadow: none;
220 | font-size: 12px;
221 | font-weight: bold;
222 | line-height: 1.6;
223 | letter-spacing: 1px;
224 | text-transform: uppercase;
225 | -webkit-transition: none;
226 | transition: none;
227 | }
228 |
229 | button:hover,
230 | input[type="button"]:hover,
231 | input[type="reset"]:hover,
232 | input[type="submit"]:hover {
233 | border-color: inherit;
234 | background: #008ed6;
235 | }
236 |
237 | button:focus,
238 | input[type="button"]:focus,
239 | input[type="reset"]:focus,
240 | input[type="submit"]:focus,
241 | button:active,
242 | input[type="button"]:active,
243 | input[type="reset"]:active,
244 | input[type="submit"]:active {
245 | border-color: #aaa #bbb #bbb;
246 | -webkit-box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
247 | box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
248 | }
249 |
250 | input[type="text"],
251 | input[type="email"],
252 | input[type="url"],
253 | input[type="password"],
254 | input[type="search"],
255 | input[type="tel"],
256 | input[type="time"],
257 | input[type="week"],
258 | input[type="month"],
259 | input[type="datetime-local"],
260 | input[type="datetime"],
261 | input[type="date"],
262 | input[type="color"],
263 | textarea,
264 | select {
265 | padding: 5px;
266 | border: 1px solid #dedede;
267 | border-radius: 3px;
268 | color: #666;
269 | }
270 |
271 | input[type="text"]:focus,
272 | input[type="email"]:focus,
273 | input[type="url"]:focus,
274 | input[type="password"]:focus,
275 | input[type="search"]:focus,
276 | textarea:focus {
277 | color: #111;
278 | }
279 |
280 | textarea {
281 | width: 100%;
282 | height: auto;
283 | min-height: 150px;
284 | padding: 10px;
285 | }
286 |
287 | input[type="date"],
288 | input[type="time"],
289 | input[type="datetime-local"],
290 | input[type="month"] {
291 | line-height: normal;
292 | }
293 |
294 | label {
295 | padding-right: 5px;
296 | vertical-align: middle;
297 | }
298 |
299 | code {
300 | padding: 2px 4px;
301 | border-radius: 4px;
302 | color: #c7254e;
303 | background-color: #f9f2f4;
304 | font-size: 90%;
305 | }
306 |
307 | code,
308 | kbd,
309 | tt,
310 | var {
311 | font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
312 | font-size: 15px;
313 | font-size: 0.9375rem;
314 | }
315 |
--------------------------------------------------------------------------------
/css/ielt9.css:
--------------------------------------------------------------------------------
1 | .preloader {
2 | display: none;
3 | }
4 |
--------------------------------------------------------------------------------
/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codeinwp/Parallax-One/8587c7d2514ab477cc1fdba0e10a1c0246432767/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codeinwp/Parallax-One/8587c7d2514ab477cc1fdba0e10a1c0246432767/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codeinwp/Parallax-One/8587c7d2514ab477cc1fdba0e10a1c0246432767/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codeinwp/Parallax-One/8587c7d2514ab477cc1fdba0e10a1c0246432767/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codeinwp/Parallax-One/8587c7d2514ab477cc1fdba0e10a1c0246432767/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/fonts/stamp-icons.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codeinwp/Parallax-One/8587c7d2514ab477cc1fdba0e10a1c0246432767/fonts/stamp-icons.eot
--------------------------------------------------------------------------------
/fonts/stamp-icons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codeinwp/Parallax-One/8587c7d2514ab477cc1fdba0e10a1c0246432767/fonts/stamp-icons.ttf
--------------------------------------------------------------------------------
/fonts/stamp-icons.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codeinwp/Parallax-One/8587c7d2514ab477cc1fdba0e10a1c0246432767/fonts/stamp-icons.woff
--------------------------------------------------------------------------------
/footer.php:
--------------------------------------------------------------------------------
1 |
9 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
26 | 46 |
47 | 48 | 1 && get_option( 'page_comments' ) ) : 50 | ?> 51 | 60 | 63 | 64 |65 | 'ol', 69 | 'short_ping' => true, 70 | 'avatar_size' => 60, 71 | ) 72 | ); 73 | ?> 74 |
75 | 76 | 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through 78 | ?> 79 | 88 | 91 | 92 | 93 | 94 | 98 | 99 | 100 | 101 | 102 | 103 |