{{{title}}}
18 |{{excerpt words="30"}}...
19 | 20 |
15 | 13.03.2019 Make the theme compatible with Ghost 2.x
16 |
18 | 08.01.2017 Fixed tag page error + updated stylesheet and preview gif
19 |
21 | 05.01.2017 Fix ghost pro errors, make more generic for others to use - by xdumaine
22 |
24 | 30.07.2016 Practice now uses infinite scroll for pagination v1.4
25 |
27 | 27.07.2016 Changed typography, navigation and allows now background images v1.3
28 |
30 | 10.07.2016 Added footer section for credits v.1.2
31 |
33 | 06.07.2016 PageSpeed optimized v.1.1
34 |
36 | 01.07.2016 Release of Practice v.1.0
37 |
38 |
39 | ## Contributors - many thanks to you!
40 | [xdumaine](https://github.com/xdumaine) | [Br3nda](https://github.com/Br3nda) | [GeCol1](https://github.com/GeCol1)
41 |
--------------------------------------------------------------------------------
/assets/css/style.css:
--------------------------------------------------------------------------------
1 | /*
2 | Theme: Practice
3 | Author: Dennis Mayk
4 | Version: v.1.3
5 | Url: https://tilligetthere.com
6 | */
7 |
8 | body {
9 | font-family: Lora, sans-serif;
10 | background: #f5f5f5;
11 | color: #3A4145;
12 | }
13 | a {
14 | background-color: transparent;
15 | color: #3A4145;
16 | text-decoration: none;
17 | border-bottom: 1px dashed #7bd0c1;
18 | -webkit-transition: all 0.3s;
19 | -moz-transition: all 0.3s;
20 | -o-transition: all 0.3s;
21 | transition: all 0.3s;
22 | }
23 | a:focus,
24 | a:hover {
25 | color: #7bd0c1;
26 | text-decoration: none;
27 | border:none;
28 | }
29 | p {
30 | margin: 0 5px 20px;
31 | }
32 | h1,
33 | h2,
34 | h3,
35 | h4 {
36 | font-family: inherit;
37 | line-height: 1.1;
38 | color: inherit;
39 | margin-top: 10px;
40 | margin-bottom: 10px;
41 | }
42 | h1 {
43 | font-size: 36px;
44 | font-weight: 700;
45 | }
46 | h2 {
47 | font-size: 28px;
48 | font-weight: 700;
49 | }
50 | h3 {
51 | font-size: 24px;
52 | font-weight: 500;
53 | }
54 | h4 {
55 | font-size: 18px;
56 | font-weight: 500;
57 | }
58 | blockquote {
59 | box-sizing: border-box;
60 | margin: 1.75em 0;
61 | padding: 0 0 0 1.75em;
62 | border-left: #4A4A4A .4em solid
63 | }
64 | blockquote p {
65 | margin: .8em 0;
66 | font-style: italic
67 | }
68 | blockquote small {
69 | margin: .8em 0 .8em 1.5em;
70 | font-size: .9em;
71 | color: #CCC
72 | }
73 | hr {
74 | height: 1px;
75 | background: #E2E9ED;
76 | border: none;
77 | width: 50%;
78 | margin: 40px auto;
79 | }
80 |
81 | /*
82 | ===============================================================================
83 | Header & Navigation
84 | ===============================================================================
85 | */
86 |
87 | header #nav {
88 | height: 50px;
89 | text-align: center;
90 | margin: 0;
91 | padding: 25px 0 0;
92 | }
93 | header #nav li {
94 | display: inline-block;
95 | }
96 | header #nav li a {
97 | display: block;
98 | color: #3A4145;
99 | font-size: 18px;
100 | padding: 10px 25px;
101 | border: 2px solid transparent;
102 | text-decoration: none;
103 | -webkit-transition: all 0.3s;
104 | -moz-transition: all 0.3s;
105 | -o-transition: all 0.3s;
106 | transition: all 0.3s;
107 | }
108 | header #nav li a:hover {
109 | border: 2px solid #fff;
110 | border-radius: 5px;
111 | color: #fff;
112 | }
113 | header .banner {
114 | margin: 30px auto
115 | }
116 | header .banner img {
117 | max-width: 150px;
118 | height: auto;
119 | margin: 0 auto;
120 | margin-bottom: 0.8em;
121 | }
122 | header .banner h1 {
123 | color: #fff;
124 | font-size: 4.85em;
125 | margin-bottom: 0.8em
126 | }
127 | header .banner h1 a {
128 | color: #fff;
129 | border: none;
130 | }
131 | header .banner h2 {
132 | color: #fff;
133 | font-size: 1.3em;
134 | font-style: italic;
135 | font-weight: 300;
136 | line-height: 1.5;
137 | margin: 0 auto;
138 | width: 50%;
139 | }
140 | .pagination,
141 | header .banner {
142 | text-align: center
143 | }
144 |
145 | /*
146 | ===============================================================================
147 | Content
148 | ===============================================================================
149 | */
150 |
151 | .post-wrapper {
152 | margin: 60px auto 0;
153 | background: #fff;
154 | padding: 30px;
155 | max-width: 840px;
156 | line-height: 1.75em;
157 | overflow: hidden
158 | }
159 | .index-wrapper {
160 | margin-top: 60px;
161 | line-height: 1.75em;
162 | }
163 | .index-wrapper section#timeline article div.inner,
164 | .post-wrapper {
165 | border-radius: 2px;
166 | box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24)
167 | }
168 | .index-wrapper section#timeline article div.inner,
169 | .pagination {
170 | overflow: hidden;
171 | transition: all .3s cubic-bezier(.25, .8, .25, 1)
172 | }
173 | .index-wrapper section#timeline {
174 | width: 80%;
175 | margin: 20px auto;
176 | position: relative;
177 | }
178 | .index-wrapper section#timeline:before {
179 | content: '';
180 | display: block;
181 | position: absolute;
182 | left: 50%;
183 | top: 0;
184 | margin: 0 0 0 -1px;
185 | width: 2px;
186 | height: 102%;
187 | background: #3A4145;
188 | }
189 | .index-wrapper section#timeline article {
190 | width: 100%;
191 | margin: 0 0 20px;
192 | position: relative;
193 | }
194 | .index-wrapper section#timeline article:after {
195 | content: '';
196 | display: block;
197 | clear: both
198 | }
199 | .index-wrapper section#timeline article div.inner {
200 | width: 40%;
201 | float: left;
202 | margin: 5px 0 0;
203 | background: #fff
204 | }
205 | .index-wrapper section#timeline article div.inner:hover {
206 | box-shadow: 0 14px 28px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .22)
207 | }
208 | .index-wrapper section#timeline article div.inner span.date,
209 | .pagination {
210 | background: #fff;
211 | box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24)
212 | }
213 | .index-wrapper section#timeline article div.inner span.date {
214 | display: block;
215 | width: 60px;
216 | height: 50px;
217 | padding: 5px 0;
218 | position: absolute;
219 | top: 0;
220 | left: 50%;
221 | margin: 0 0 0 -32px;
222 | border-radius: 100%;
223 | font-size: 12px;
224 | font-weight: 900;
225 | text-transform: uppercase;
226 | color: #3A4145;
227 | border: 2px solid transparent
228 | }
229 | .index-wrapper section#timeline article div.inner span.date span {
230 | display: block;
231 | text-align: center;
232 | line-height: 1.3em
233 | }
234 | .index-wrapper section#timeline article div.inner span.date span.day {
235 | font-size: 10px
236 | }
237 | .index-wrapper section#timeline article div.inner span.date span.month {
238 | font-size: 18px
239 | }
240 | .index-wrapper section#timeline article div.inner span.date span.year {
241 | font-size: 10px
242 | }
243 | .index-wrapper section#timeline article div.inner h2 {
244 | padding: 15px 20px 5px;
245 | margin: 0;
246 | font-size: 1.6em;
247 | border-radius: 2px 2px 0 0;
248 | position: relative
249 | }
250 | .index-wrapper section#timeline article div.inner h2:after {
251 | content: '';
252 | position: absolute;
253 | top: 20px;
254 | right: -5px;
255 | width: 10px;
256 | height: 10px;
257 | -webkit-transform: rotate(-45deg)
258 | }
259 | .index-wrapper section#timeline article div.inner img {
260 | max-width: 100%;
261 | height: auto;
262 | }
263 | .index-wrapper section#timeline article div.inner p {
264 | padding: 5px 20px 15px;
265 | margin: 0;
266 | font-size: 1em;
267 | color: #656565;
268 | border-radius: 0 0 2px 2px
269 | }
270 | .index-wrapper section#timeline article div.inner a {
271 | border: none;
272 | }
273 | .index-wrapper section#timeline article div.inner .post-date,
274 | .index-wrapper section#timeline article div.inner h1,
275 | .index-wrapper section#timeline article div.inner h3,
276 | .index-wrapper section#timeline article div.inner h4,
277 | .index-wrapper section#timeline article div.inner h5,
278 | .index-wrapper section#timeline article div.inner h6 {
279 | padding-left: 20px;
280 | margin: 0
281 | }
282 | .index-wrapper section#timeline article:nth-child(2n+2) div.inner {
283 | float: right
284 | }
285 | .index-wrapper section#timeline article:nth-child(2n+2) div.inner h2:after {
286 | left: -5px
287 | }
288 | .post-wrapper .cover-img {
289 | width: 110%;
290 | margin: -30px 0 20px -30px
291 | }
292 | .post-wrapper img {
293 | width: 110%;
294 | margin: 10px 0 0 -40px;
295 | }
296 | .post-date {
297 | color: #9a9a9a;
298 | margin-bottom: 1.6em
299 | }
300 |
301 | /*
302 | ===============================================================================
303 | Pagination
304 | ===============================================================================
305 | */
306 |
307 | .pagination {
308 | max-width: 150px;
309 | margin: 100px auto;
310 | border-radius: 5px;
311 | }
312 | .pagination #next {
313 | color: #3A4145;
314 | font-size: 1em;
315 | padding: 15px;
316 | }
317 | #infscr-loading {
318 | width: 60px;
319 | height: 50px;
320 | padding: 5px 0;
321 | margin: 100px auto;
322 | text-align: center;
323 | border-radius: 100%;
324 | background: #fff;
325 | z-index: 1100;
326 | text-transform: uppercase;
327 | color: #3A4145;
328 | box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
329 | }
330 | #infscr-loading div {
331 | line-height: 3.1em;
332 | }
333 | .box {
334 | background: #F2F2F2;
335 | width: 70%;
336 | text-align: center;
337 | margin: 80px auto 0 auto;
338 | border: #E2E9ED solid 1px;
339 | }
340 | .author {
341 | position: relative;
342 | margin: 0 auto!important;
343 | width: 100px!important;
344 | height: 100px;
345 | border-radius: 50%;
346 | top: -50px;
347 | }
348 | .more-posts {
349 | position: relative;
350 | top: -25px;
351 | }
352 | .more-posts p {
353 | margin: 10px;
354 | }
355 | footer,
356 | footer a {
357 | font-size: 12px;
358 | color: #3A4145;
359 | text-align: center;
360 | margin-top: 60px;
361 | text-decoration: none;
362 | }
363 |
364 | /*
365 | ===============================================================================
366 | Make it Responsive
367 | ===============================================================================
368 | */
369 |
370 | @media screen and (max-width:1000px) {
371 | .index-wrapper section#timeline article:nth-child(n) div.inner {
372 | float: right
373 | }
374 | .index-wrapper section#timeline article div.inner span.date,
375 | .index-wrapper section#timeline:before {
376 | left: 0
377 | }
378 | .index-wrapper section#timeline article div.inner,
379 | header {
380 | width: 90%
381 | }
382 | .post-wrapper .cover-img,
383 | .post-wrapper img {
384 | width: 115%
385 | }
386 | }
387 | @media screen and (max-width:600px) {
388 | .index-wrapper section#timeline article:nth-child(n) div.inner {
389 | float: right
390 | }
391 | .index-wrapper section#timeline,
392 | header {
393 | width: 95%;
394 | }
395 | .index-wrapper section#timeline article div.inner span.date,
396 | .index-wrapper section#timeline:before {
397 | left: 0;
398 | display: none
399 | }
400 | .index-wrapper section#timeline article div.inner,
401 | .post-wrapper section#timeline article div.inner {
402 | width: 100%
403 | }
404 | .post-wrapper .cover-img,
405 | .post-wrapper img {
406 | width: 130%
407 | }
408 | header .banner h1 {
409 | font-size: 3.5em
410 | }
411 | header .banner h2 {
412 | font-size: 1.2em;
413 | width: 80%;
414 | }
415 | header #nav li a {
416 | font-size: 12px;
417 | padding: 5px 10px;
418 | }
419 | .social .min-date {
420 | display: inline-block
421 | }
422 | .social .tag {
423 | display: none
424 | }
425 | .box {
426 | width: 90%;
427 | }
428 | }
429 |
430 | /*
431 | ===============================================================================
432 | Ghost 2.x
433 | ===============================================================================
434 | */
435 | .kg-width-wide {
436 | position: relative;
437 | width: 85vw;
438 | min-width: 100%;
439 | margin: auto calc(50% - 50vw);
440 | transform: translateX(calc(50vw - 50%));
441 | }
442 |
443 | .kg-width-full {
444 | position: relative;
445 | width: 100vw;
446 | left: 50%;
447 | right: 50%;
448 | margin-left: -50vw;
449 | margin-right: -50vw;
450 | }
451 |
452 | .kg-gallery-container {
453 | display: flex;
454 | flex-direction: column;
455 | max-width: 1040px;
456 | width: 100vw;
457 | }
458 |
459 | .kg-gallery-row {
460 | display: flex;
461 | flex-direction: row;
462 | justify-content: center;
463 | }
464 |
465 | .kg-gallery-image img {
466 | display: block;
467 | margin: 0;
468 | width: 100%;
469 | height: 100%;
470 | }
471 |
472 | .kg-gallery-row:not(:first-of-type) {
473 | margin: 0.75em 0 0 0;
474 | }
475 |
476 | .kg-gallery-image:not(:first-of-type) {
477 | margin: 0 0 0 0.75em;
478 | }
--------------------------------------------------------------------------------
/assets/css/subbscribe.css:
--------------------------------------------------------------------------------
1 | /*
2 | ===============================================================================
3 | Subbscribe style
4 | ===============================================================================
5 | */
6 | #subbscribe {
7 | padding: 0;
8 | margin: 0;
9 | color: #7b8993;
10 | position: fixed;
11 | right: 15px;
12 | bottom: 15px;
13 | border: 1px solid #e9e9e9;
14 | -webkit-font-smoothing: antialiased;
15 | font-weight: 300;
16 | font-size: 17px;
17 | font-size: 15px;
18 | box-shadow: 0 1px 2px #e9e9e9;
19 | -webkit-border-radius: 3px;
20 | -moz-border-radius: 3px;
21 | border-radius: 3px;
22 | -moz-background-clip: padding;
23 | -webkit-background-clip: padding-box;
24 | background-clip: padding-box;
25 | background-color: #fff;
26 | z-index: 100001;
27 | -webkit-transform: translate3d(0, 0, 0);
28 | -webkit-backface-visibility: hidden;
29 | -webkit-transform: translateZ(0);
30 | }
31 | #subbscribe a {
32 | color: #7b8993;
33 | text-decoration: underline;
34 | }
35 | #subbscribe a:hover,
36 | #subbscribe a:focus,
37 | #subbscribe a:visited,
38 | #subbscribe a:active {
39 | color: #7b8993;
40 | }
41 | #subbscribe .subbscribe-alert {
42 | font-size: 12px;
43 | font-weight: 900;
44 | margin-bottom: 10px;
45 | }
46 | #subbscribe .subbscribe-error {
47 | color: #fd392b;
48 | }
49 | #subbscribe .subbscribe-success {
50 | color: #9fce70;
51 | }
52 | #subbscribe .animate {
53 | -moz-transition: all 0.2s ease-in;
54 | -webkit-transition: all 0.2s ease-in;
55 | -o-transition: all 0.2s ease-in;
56 | transition: all 0.2s ease-in;
57 | }
58 | #subbscribe .subb-title {
59 | padding: 12px 12px 10px 12px;
60 | font-weight: bold;
61 | border: 1px solid #e9e9e9;
62 | border-width: 0 0 1px 0;
63 | }
64 | #subbscribe .subb-title .close-x {
65 | float: right;
66 | margin-top: 5px;
67 | color: #dcdcdc;
68 | cursor: pointer;
69 | }
70 | #subbscribe .subb-body {
71 | padding: 15px;
72 | position: relative;
73 | }
74 | #subbscribe .subb-body .subb-thumbnail {
75 | width: 40px;
76 | height: 40px;
77 | display: inline-block;
78 | float: left;
79 | margin-bottom: 15px;
80 | }
81 | #subbscribe .subb-body .subb-thumbnail img {
82 | -webkit-border-radius: 40px;
83 | -moz-border-radius: 40px;
84 | border-radius: 40px;
85 | -moz-background-clip: padding;
86 | -webkit-background-clip: padding-box;
87 | background-clip: padding-box;
88 | }
89 | #subbscribe .subb-body .subb-button {
90 | float: right;
91 | margin-top: 5px;
92 | color: #fff;
93 | border: none;
94 | font-weight: bold;
95 | padding: 9px 10px 9px 10px;
96 | font-size: 12px;
97 | cursor: pointer;
98 | -webkit-border-radius: 3px;
99 | -moz-border-radius: 3px;
100 | border-radius: 3px;
101 | -moz-background-clip: padding;
102 | -webkit-background-clip: padding-box;
103 | background-clip: padding-box;
104 | }
105 | #subbscribe .subb-body .subb-button:hover {
106 | -moz-transition: all 0.2s ease-in;
107 | -webkit-transition: all 0.2s ease-in;
108 | -o-transition: all 0.2s ease-in;
109 | transition: all 0.2s ease-in;
110 | }
111 | #subbscribe .subb-body .subb-button:disabled {
112 | opacity: .5;
113 | }
114 | #subbscribe .subb-body .subb-hidden {
115 | display: block;
116 | }
117 | #subbscribe .subb-body .subb-hidden .subb-site {
118 | float: left;
119 | font-weight: bold;
120 | font-size: 14px;
121 | margin-top: 12px;
122 | margin-left: 10px;
123 | }
124 | #subbscribe .subb-body .subb-form {
125 | padding-left: 5px;
126 | color: #636f78;
127 | }
128 | #subbscribe .subb-body .subb-form p {
129 | margin-top: 5px;
130 | margin-bottom: 15px;
131 | font-size: 13px;
132 | font-weight: 500 !important;
133 | width: 100%;
134 | color: #7b8993;
135 | }
136 | #subbscribe .subb-body .subb-form input {
137 | text-indent: 8px;
138 | font-weight: 500;
139 | margin-bottom: 5px;
140 | -webkit-border-radius: 3px;
141 | -moz-border-radius: 3px;
142 | border-radius: 3px;
143 | -moz-background-clip: padding;
144 | -webkit-background-clip: padding-box;
145 | background-clip: padding-box;
146 | border: 1px solid #dcdcdc;
147 | padding: 7px;
148 | font-size: 12px;
149 | display: block;
150 | color: #57626a;
151 | width: 100%;
152 | padding: 5px 0;
153 | }
154 | #subbscribe .subb-body .subb-form input.error {
155 | border-color: #fd392b;
156 | }
157 | #subbscribe .subb-body .subb-form input:focus {
158 | outline: 0 none;
159 | resize: none !important;
160 | box-shadow: none !important;
161 | -moz-transition: all 0.2s ease-in;
162 | -webkit-transition: all 0.2s ease-in;
163 | -o-transition: all 0.2s ease-in;
164 | transition: all 0.2s ease-in;
165 | }
166 | #subbscribe .subb-body .footer {
167 | font-size: 10px;
168 | text-align: right;
169 | }
170 | /*
171 | ===============================================================================
172 | Animations
173 | ===============================================================================
174 | */
175 | .animated {
176 | -webkit-animation-duration: 1s;
177 | animation-duration: 1s;
178 | -webkit-animation-fill-mode: both;
179 | animation-fill-mode: both;
180 | }
181 | @-webkit-keyframes slideInRight {
182 | 0% {
183 | -webkit-transform: translateX(100%);
184 | transform: translateX(100%);
185 | visibility: visible;
186 | }
187 | 100% {
188 | -webkit-transform: translateX(0);
189 | transform: translateX(0);
190 | }
191 | }
192 | @keyframes slideInRight {
193 | 0% {
194 | -webkit-transform: translateX(100%);
195 | -ms-transform: translateX(100%);
196 | transform: translateX(100%);
197 | visibility: visible;
198 | }
199 | 100% {
200 | -webkit-transform: translateX(0);
201 | -ms-transform: translateX(0);
202 | transform: translateX(0);
203 | }
204 | }
205 | .slideInRight {
206 | -webkit-animation-name: slideInRight;
207 | animation-name: slideInRight;
208 | }
209 | @-webkit-keyframes fadeOut {
210 | 0% {
211 | opacity: 1;
212 | }
213 | 100% {
214 | opacity: 0;
215 | }
216 | }
217 | @keyframes fadeOut {
218 | 0% {
219 | opacity: 1;
220 | }
221 | 100% {
222 | opacity: 0;
223 | }
224 | }
225 | .fadeOut {
226 | -webkit-animation-name: fadeOut;
227 | animation-name: fadeOut;
228 | }
229 | /*
230 | ===============================================================================
231 | Media queries
232 | ===============================================================================
233 | */
234 | @media (max-width: 550px) {
235 | #subbscribe {
236 | width: 92%;
237 | }
238 | }
239 |
--------------------------------------------------------------------------------
/assets/img/loader.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dm807cam/Practice/691a3429c697f30725fd047d0bb4634e567af172/assets/img/loader.gif
--------------------------------------------------------------------------------
/assets/js/index.js:
--------------------------------------------------------------------------------
1 | /*
2 | ===============================================================================
3 | Subbscribe
4 | ===============================================================================
5 | */
6 | if (window.subbscribeOpts) {
7 | $('body').subbscribe(window.subbscribeOpts);
8 | }
9 | /*
10 | ===============================================================================
11 | Infinity Scroll - YEAH!
12 | ===============================================================================
13 | */
14 | $('.index-wrapper').infinitescroll({
15 | navSelector: "#next:last",
16 | nextSelector: "a#next:last",
17 | itemSelector: "#timeline",
18 | dataType: 'html',
19 | maxPage: 3,
20 | });
21 | /*
22 | ===============================================================================
23 | Disqus
24 | ===============================================================================
25 | */
26 | if (window.disqusSrc) {
27 | (function () { // DON'T EDIT BELOW THIS LINE
28 | var d = document,
29 | s = d.createElement('script');
30 |
31 | s.src = window.disqusSrc;
32 |
33 | s.setAttribute('data-timestamp', +new Date());
34 | (d.head || d.body).appendChild(s);
35 | })();
36 | }
37 |
--------------------------------------------------------------------------------
/assets/js/infinitescroll.min.js:
--------------------------------------------------------------------------------
1 | !function(e){"function"==typeof define&&define.amd?define(["jquery"],e):e(jQuery)}(function(e,i){"use strict";e.infinitescroll=function(i,A,t){this.element=e(t),this._create(i,A)||(this.failed=!0)},e.infinitescroll.defaults={loading:{finished:i,finishedMsg:"End",img:"data:image/gif;base64,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",msg:null,msgText:"",selector:null,speed:"medium",start:i},state:{isDuringAjax:!1,isInvalidPage:!1,isDestroyed:!1,isDone:!1,isPaused:!1,isBeyondMaxPage:!1,currPage:1},debug:!1,behavior:i,binder:e(window),nextSelector:"div.pagination a:first",navSelector:"div.pagination",contentSelector:null,extraScrollPx:150,itemSelector:"article",animate:!1,pathParse:i,dataType:"html",appendCallback:!0,bufferPx:400,errorCallback:function(){},infid:0,pixelsFromNavToBottom:i,path:i,prefill:!1,maxPage:i},e.infinitescroll.prototype={_binding:function(e){var A=this,t=A.options;return t.v="2.0b2.120520",t.behavior&&this["_binding_"+t.behavior]!==i?void this["_binding_"+t.behavior].call(this):"bind"!==e&&"unbind"!==e?(this._debug("Binding value "+e+" not valid"),!1):("unbind"===e?this.options.binder.unbind("smartscroll.infscr."+A.options.infid):this.options.binder[e]("smartscroll.infscr."+A.options.infid,function(){A.scroll()}),void this._debug("Binding",e))},_create:function(A,t){var o=e.extend(!0,{},e.infinitescroll.defaults,A);this.options=o;var n=e(window),a=this;if(!a._validate(A))return!1;var s=e(o.nextSelector).attr("href");if(!s)return this._debug("Navigation selector not found"),!1;o.path=o.path||this._determinepath(s),o.contentSelector=o.contentSelector||this.element,o.loading.selector=o.loading.selector||o.contentSelector,o.loading.msg=o.loading.msg||e('{{excerpt words="30"}}...
19 | 20 |