Fix Liquid syntax error in `/cv/skills.html`

Liquid syntax error: "Expected id but found end_of_string_in `cv.skills.`" in `/cv/skills.html` include. Remove extra `.` after `cv.skills`
This commit is contained in:
Michael Rose 2017-09-05 13:15:22 -04:00
parent 14ed2e2d2f
commit 8b69401864
3 changed files with 10 additions and 4 deletions

View File

@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
### Added
### Changed
### Fixed
- Liquid syntax error: "Expected id but found end_of_string_in `cv.skills.`" in `/cv/skills.html` include.
## [1.1.0] - 2017-03-30
### Added
- Improved installation documentation. [#8](https://github.com/mmistakes/jekyll-theme-basically-basic/issues/8)

View File

@ -1,4 +1,4 @@
{% if cv.skills. %}
{% if cv.skills %}
<div id="skills" class="entry">
<header class="entry-header">
<h3 class="entry-title">Skills</h3>
@ -17,4 +17,4 @@
{% endfor %}
</div>
</div>
{% endif %}
{% endif %}

View File

@ -1,4 +1,4 @@
{% if cv.skills. %}
{% if cv.skills %}
<div id="skills" class="entry">
<header class="entry-header">
<h3 class="entry-title">Skills</h3>
@ -17,4 +17,4 @@
{% endfor %}
</div>
</div>
{% endif %}
{% endif %}