Skip to content

Commit

Permalink
Fix #258
Browse files Browse the repository at this point in the history
# Conflicts:
#	_layouts/project.html
#	_layouts/resume.html
#	_layouts/welcome.html
  • Loading branch information
qwtel committed Feb 11, 2021
1 parent 8da69d6 commit 1b6eeac
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
5 changes: 0 additions & 5 deletions _layouts/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,6 @@
layout: compress
---

{% assign version = jekyll.version | split:'.' %}
{% assign major = v[0] %}
{% assign minor = v[1] %}
{% assign patch = v[2] %}

{% assign plugins = site.plugins | default:site.gems %}

{% assign author = site.data.authors[page.author] | default:site.data.authors.first[1] | default:site.author %}
Expand Down
5 changes: 5 additions & 0 deletions _layouts/post.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@
layout: base
---

{% assign version = jekyll.version | split:'.' %}
{% assign major = version[0] | plus:0 %}
{% assign minor = version[1] | plus:0 %}
{% assign patch = version[2] | plus:0 %}

{% include_cached components/post.html post=page no_link_title=true no_excerpt=true hide_image=page.hide_image hide_description=page.hide_description %}

{% include components/dingbat.html %}
Expand Down

0 comments on commit 1b6eeac

Please sign in to comment.