Skip to content

Commit

Permalink
update pager and update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtmiller committed Jan 29, 2018
1 parent db91017 commit 960247e
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 27 deletions.
6 changes: 3 additions & 3 deletions assets/vendor/jquery/jquery.js
@@ -1,5 +1,5 @@
/*!
* jQuery JavaScript Library v3.3.0
* jQuery JavaScript Library v3.3.1
* https://jquery.com/
*
* Includes Sizzle.js
Expand All @@ -9,7 +9,7 @@
* Released under the MIT license
* https://jquery.org/license
*
* Date: 2018-01-19T19:00Z
* Date: 2018-01-20T17:24Z
*/
( function( global, factory ) {

Expand Down Expand Up @@ -129,7 +129,7 @@ function toType( obj ) {


var
version = "3.3.0",
version = "3.3.1",

// Define a local copy of jQuery
jQuery = function( selector, context ) {
Expand Down
4 changes: 2 additions & 2 deletions assets/vendor/jquery/jquery.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion jekyll-theme-clean-blog.gemspec
Expand Up @@ -2,7 +2,7 @@

Gem::Specification.new do |spec|
spec.name = "jekyll-theme-clean-blog"
spec.version = "4.0.0"
spec.version = "4.0.0+1"
spec.authors = ["Start Bootstrap"]
spec.email = ["feedback@startbootstrap.com"]

Expand Down
41 changes: 24 additions & 17 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -28,12 +28,12 @@
"dependencies": {
"bootstrap": "4.0.0",
"font-awesome": "4.7.0",
"jquery": "3.3.0",
"jquery": "3.3.1",
"popper.js": "1.12.9",
"startbootstrap-clean-blog": "4.0.0"
},
"devDependencies": {
"browser-sync": "2.23.5",
"browser-sync": "2.23.6",
"gulp": "^3.9.1",
"gulp-clean-css": "3.9.2",
"gulp-header": "2.0.1",
Expand Down
4 changes: 2 additions & 2 deletions posts/index.html
Expand Up @@ -34,11 +34,11 @@ <h3 class="post-subtitle">{{ post.excerpt | strip_html | truncatewords: 15 }}</h
<div class="clearfix">

{% if paginator.previous_page %}
<a class="btn btn-primary float-left" href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">&larr; Older<span class="d-none d-md-inline"> Posts</span></a>
<a class="btn btn-primary float-left" href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">&larr; Newer<span class="d-none d-md-inline"> Posts</span></a>
{% endif %}

{% if paginator.next_page %}
<a class="btn btn-primary float-right" href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Newer<span class="d-none d-md-inline"> Posts</span> &rarr;</a>
<a class="btn btn-primary float-right" href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Older<span class="d-none d-md-inline"> Posts</span> &rarr;</a>
{% endif %}

</div>
Expand Down

0 comments on commit 960247e

Please sign in to comment.