Skip to content

Commit 8b69401

Browse files
committed
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`
1 parent 14ed2e2 commit 8b69401

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
### Added
11+
### Changed
12+
### Fixed
13+
14+
- Liquid syntax error: "Expected id but found end_of_string_in `cv.skills.`" in `/cv/skills.html` include.
15+
1016
## [1.1.0] - 2017-03-30
1117
### Added
1218
- Improved installation documentation. [#8](https://github.com/mmistakes/jekyll-theme-basically-basic/issues/8)

_includes/cv/skills.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% if cv.skills. %}
1+
{% if cv.skills %}
22
<div id="skills" class="entry">
33
<header class="entry-header">
44
<h3 class="entry-title">Skills</h3>
@@ -17,4 +17,4 @@ <h4 class="title">{{ s.name }}</h4>
1717
{% endfor %}
1818
</div>
1919
</div>
20-
{% endif %}
20+
{% endif %}

docs/_includes/cv/skills.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% if cv.skills. %}
1+
{% if cv.skills %}
22
<div id="skills" class="entry">
33
<header class="entry-header">
44
<h3 class="entry-title">Skills</h3>
@@ -17,4 +17,4 @@ <h4 class="title">{{ s.name }}</h4>
1717
{% endfor %}
1818
</div>
1919
</div>
20-
{% endif %}
20+
{% endif %}

0 commit comments

Comments
 (0)