Skip to content

Instantly share code, notes, and snippets.

@starckio
Last active October 26, 2016 07:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save starckio/bdc23af1c08b68efa891 to your computer and use it in GitHub Desktop.
Save starckio/bdc23af1c08b68efa891 to your computer and use it in GitHub Desktop.
Load more content
<?php snippet('header') ?>
<main class="main blog" role="main">
<?php $articles = $page->children()->visible()->flip()->paginate(6) ?>
<?php foreach($articles as $article): ?>
<article class="posts">
<h1><?php echo $article->title()->html() ?></h1>
<time datetime="<?php echo $article->date('c') ?>" pubdate="pubdate"><?php echo $article->date('d.m.Y H:i') ?></time>
<p><?php echo $article->text()->excerpt(300) ?></p>
<a href="<?php echo $article->url() ?>">Read more…</a>
</article>
<?php endforeach ?>
<?php if($articles->pagination()->hasPages()): ?>
<nav class="pagination">
<?php if($articles->pagination()->hasNextPage()): ?>
<a class="next" data-site="<?php echo $articles->pagination()->nextPage() ?>" data-href="<?php echo $articles->pagination()->nextPageURL() ?>">Show me more article</a>
<?php else: ?>
<p class="end">Congrats, you’ve reached the end of the internet.</p>
<?php endif ?>
</nav>
<?php endif ?>
</main>
<?php snippet('footer') ?>
$(document).on("click", ".pagination .next", function() {
var temp = $("<div>"),
self = $(this);
self
.html("Loading...")
.addClass("loading");
temp.load($(this).data("href") + ".blog .posts, .pagination", function() {
window.history.pushState({page: self.data("site"), postion: $(document).scrollTop()}, document.title, self.data("href"));
self.parent(".pagination").remove();
$(".blog").append(temp.html());
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment