mirror of
https://github.com/kremalicious/blog.git
synced 2024-12-23 01:30:01 +01:00
kill infinite scroll
This commit is contained in:
parent
d2e2832da4
commit
1af2abd77d
@ -105,11 +105,10 @@ module.exports = function(grunt){
|
|||||||
'node_modules/picturefill/dist/picturefill.js'
|
'node_modules/picturefill/dist/picturefill.js'
|
||||||
],
|
],
|
||||||
'<%= config.site %>/<%= config.assets.js %>/CustomElements.min.js': [
|
'<%= config.site %>/<%= config.assets.js %>/CustomElements.min.js': [
|
||||||
'node_modules/webcomponentsjs/CustomElements.js'
|
'node_modules/webcomponents.js/CustomElements.js'
|
||||||
],
|
],
|
||||||
'<%= config.site %>/<%= config.assets.js %>/kremalicious3.min.js': [
|
'<%= config.site %>/<%= config.assets.js %>/kremalicious3.min.js': [
|
||||||
'node_modules/jquery/dist/jquery.js',
|
'node_modules/jquery/dist/jquery.js',
|
||||||
'bower_components/jquery-infinite-scroll/jquery.infinitescroll.js',
|
|
||||||
'node_modules/masonry-layout/dist/masonry.pkgd.js',
|
'node_modules/masonry-layout/dist/masonry.pkgd.js',
|
||||||
'node_modules/imagesloaded/imagesloaded.js',
|
'node_modules/imagesloaded/imagesloaded.js',
|
||||||
'bower_components/simple-jekyll-search/dest/jekyll-search.js',
|
'bower_components/simple-jekyll-search/dest/jekyll-search.js',
|
||||||
|
@ -23,7 +23,7 @@ author:
|
|||||||
# --------------------
|
# --------------------
|
||||||
|
|
||||||
permalink: /:title/
|
permalink: /:title/
|
||||||
paginate: 15
|
paginate: 10
|
||||||
paginate_path: "/page/:num"
|
paginate_path: "/page/:num"
|
||||||
category_dir: "/"
|
category_dir: "/"
|
||||||
category_title_prefix: ""
|
category_title_prefix: ""
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
|
|
||||||
<title>
|
<title>
|
||||||
{% if paginator.previous_page %}
|
{% if paginator.previous_page %}
|
||||||
Page {{ paginator.page }} ¦ {{ page.title }}
|
Page {{ paginator.page }} ¦ {{ site.name }}
|
||||||
{% elsif page.title %}
|
{% elsif page.title %}
|
||||||
{{ page.title }} ¦ {{ site.name }}
|
{{ page.title }} ¦ {{ site.name }}
|
||||||
{% else %}
|
{% else %}
|
||||||
|
@ -1,51 +1,46 @@
|
|||||||
{% if paginator.total_pages > 1 %}
|
{% if paginator.total_pages > 1 %}
|
||||||
|
|
||||||
<nav class="row paginator">
|
<nav class="row paginator">
|
||||||
|
|
||||||
{% if paginator.previous_page %}
|
<p class="paginator-previous col2">
|
||||||
<p class="previous col2">
|
{% if paginator.previous_page %}
|
||||||
<i class="icon-arrow-left"></i>
|
<a
|
||||||
|
|
||||||
{% if page.category %}
|
{% if page.category %}
|
||||||
|
|
||||||
{% if paginator.previous_page == 1 %}
|
{% if paginator.previous_page == 1 %}
|
||||||
<a href="/{{ page.category }}/" rel="prev">Previous</a>
|
href="/{{ page.category }}/"
|
||||||
{% else %}
|
{% else %}
|
||||||
<a href="/{{ page.category }}/page/{{ paginator.previous_page }}/" rel="prev">Previous</a>
|
href="/{{ page.category }}/page/{{ paginator.previous_page }}/"
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% else %}
|
{% else %}
|
||||||
|
|
||||||
{% if paginator.previous_page == 1 %}
|
{% if paginator.previous_page == 1 %}
|
||||||
<a href="/" rel="prev">Previous</a>
|
href="/"
|
||||||
{% else %}
|
{% else %}
|
||||||
<a href="/page/{{ paginator.previous_page }}/" rel="prev">Previous</a>
|
href="/page/{{ paginator.previous_page }}/"
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
rel="prev"><i class="icon icon-arrow-left"></i> Previous
|
||||||
</p>
|
</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<p class="col2 pagenumber textcenter">
|
|
||||||
<span class="page_number ">Page {{ paginator.page }} of {{ paginator.total_pages }}</span>
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
{% if paginator.next_page %}
|
|
||||||
<p class="next col2">
|
<p class="col2 pagenumber textcenter">
|
||||||
|
<span class="paginator-number ">Page {{ paginator.page }} of {{ paginator.total_pages }}</span>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p class="paginator-next col2">
|
||||||
|
{% if paginator.next_page %}
|
||||||
|
<a
|
||||||
{% if page.category %}
|
{% if page.category %}
|
||||||
<a href="/{{ page.category }}/page/{{ paginator.next_page }}/" rel="next">Next</a>
|
href="/{{ page.category }}/page/{{ paginator.next_page }}/"
|
||||||
{% else %}
|
{% else %}
|
||||||
<a href="/page/{{ paginator.next_page }}/" rel="next">Next</a>
|
href="/page/{{ paginator.next_page }}/"
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<i class="icon-arrow-right"></i>
|
rel="next">Next <i class="icon icon-arrow-right"></i>
|
||||||
</p>
|
</a>
|
||||||
{% else %}
|
{% endif %}
|
||||||
<p class="next col2">
|
</p>
|
||||||
The End
|
|
||||||
</p>
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -2,7 +2,6 @@ $(ASAP = function() {
|
|||||||
|
|
||||||
siteNavigation.init();
|
siteNavigation.init();
|
||||||
siteEffects.init();
|
siteEffects.init();
|
||||||
infiniteScroll.init();
|
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -156,81 +155,3 @@ var siteEffects = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var infiniteScroll = {
|
|
||||||
|
|
||||||
infiniteScrollSetup: function() {
|
|
||||||
|
|
||||||
if ($('.page-photos').length > 0) {
|
|
||||||
var items = '#main .masonry';
|
|
||||||
} else {
|
|
||||||
var items = '#main article.hentry';
|
|
||||||
}
|
|
||||||
var $scrollContent = $('#main');
|
|
||||||
|
|
||||||
$scrollContent.infinitescroll({
|
|
||||||
loading: {
|
|
||||||
img: ''
|
|
||||||
},
|
|
||||||
itemSelector: items,
|
|
||||||
nextSelector: '.next a',
|
|
||||||
navSelector: '.paginator',
|
|
||||||
binder: $scrollContent,
|
|
||||||
behavior: 'krlc3',
|
|
||||||
}, function($scrollContent) {
|
|
||||||
// run picturefill over retrieved items
|
|
||||||
picturefill();
|
|
||||||
// run the photogrid over retrieved items
|
|
||||||
photoGrid.init();
|
|
||||||
});
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
init: function() {
|
|
||||||
this.infiniteScrollSetup();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
--------------------------------
|
|
||||||
Infinite Scroll Behavior
|
|
||||||
Manual mode with minimal loader
|
|
||||||
|
|
||||||
Usage: behavior: 'krlc3'
|
|
||||||
--------------------------------
|
|
||||||
*/
|
|
||||||
$.extend($.infinitescroll.prototype, {
|
|
||||||
|
|
||||||
_setup_krlc3: function infscr_setup_krlc3() {
|
|
||||||
var opts = this.options,
|
|
||||||
instance = this,
|
|
||||||
loader = $('<span class="loading"> ...</span>');
|
|
||||||
|
|
||||||
$(opts.nextSelector).parent().parent().addClass('infiniteLoader');
|
|
||||||
|
|
||||||
// Bind nextSelector link to retrieve
|
|
||||||
$(opts.nextSelector).click(function(e) {
|
|
||||||
if (e.which == 1 && !e.metaKey && !e.shiftKey) {
|
|
||||||
e.preventDefault();
|
|
||||||
instance.retrieve();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// custom start
|
|
||||||
instance.options.loading.start = function(opts) {
|
|
||||||
loader
|
|
||||||
.appendTo(opts.nextSelector)
|
|
||||||
.show(opts.loading.speed, function() {
|
|
||||||
instance.beginAjax(opts);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// custom finish
|
|
||||||
instance.options.loading.finished = function(opts) {
|
|
||||||
loader.detach();
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
});
|
|
||||||
|
@ -91,35 +91,24 @@
|
|||||||
.paginator
|
.paginator
|
||||||
@extend .clearfix
|
@extend .clearfix
|
||||||
|
|
||||||
p
|
.icon
|
||||||
position: relative
|
vertical-align: middle
|
||||||
a
|
|
||||||
display: block
|
|
||||||
|
|
||||||
i
|
.paginator-next
|
||||||
position: absolute
|
@extend .alignright
|
||||||
left: 0
|
text-align: right
|
||||||
top: 0
|
|
||||||
|
|
||||||
.next
|
.paginator-previous
|
||||||
@extend .alignright
|
@extend .alignleft
|
||||||
text-align: right
|
|
||||||
|
|
||||||
a
|
.paginator-number
|
||||||
margin-right: 1.5em
|
font-size: $font-size-small
|
||||||
|
color: $brand-grey-light
|
||||||
|
|
||||||
i
|
.paginator-title
|
||||||
margin-left: .5em
|
@extend .h3, .heading-band
|
||||||
left: auto
|
color: $brand-grey-light
|
||||||
right: 0
|
margin-bottom: 0
|
||||||
|
|
||||||
.previous
|
|
||||||
@extend .alignleft
|
|
||||||
|
|
||||||
a
|
|
||||||
margin-left: 1.5em
|
|
||||||
i
|
|
||||||
margin-right: .5em
|
|
||||||
|
|
||||||
|
|
||||||
// Infinite Loader
|
// Infinite Loader
|
||||||
|
@ -15,6 +15,10 @@ redirect_from:
|
|||||||
|
|
||||||
<section role="main" id="main" class="row">
|
<section role="main" id="main" class="row">
|
||||||
|
|
||||||
|
{% if paginator.previous_page %}
|
||||||
|
<h1 class="paginator-title">Page {{ paginator.page }}</h1>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
{% for post in paginator.posts %}
|
{% for post in paginator.posts %}
|
||||||
|
|
||||||
{% include articles.html %}
|
{% include articles.html %}
|
||||||
@ -23,4 +27,4 @@ redirect_from:
|
|||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
{% include paginator.html %}
|
{% include paginator.html %}
|
||||||
|
@ -8,7 +8,6 @@
|
|||||||
"description": "Blog of Matthias Kretschmann",
|
"description": "Blog of Matthias Kretschmann",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"jquery-infinite-scroll": ">=2.0.2",
|
|
||||||
"simple-jekyll-search": ">=1.0.6",
|
"simple-jekyll-search": ">=1.0.6",
|
||||||
"time-elements": ">=0.4.0"
|
"time-elements": ">=0.4.0"
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user