From 8b69401864da1d6bbc96b2c97cd650f9e6350608 Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Tue, 5 Sep 2017 13:15:22 -0400 Subject: [PATCH] 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` --- CHANGELOG.md | 6 ++++++ _includes/cv/skills.html | 4 ++-- docs/_includes/cv/skills.html | 4 ++-- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 661e407..805d1c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/_includes/cv/skills.html b/_includes/cv/skills.html index 9f1c833..38ec84d 100644 --- a/_includes/cv/skills.html +++ b/_includes/cv/skills.html @@ -1,4 +1,4 @@ -{% if cv.skills. %} +{% if cv.skills %}

Skills

@@ -17,4 +17,4 @@ {% endfor %}
-{% endif %} \ No newline at end of file +{% endif %} diff --git a/docs/_includes/cv/skills.html b/docs/_includes/cv/skills.html index 9f1c833..38ec84d 100644 --- a/docs/_includes/cv/skills.html +++ b/docs/_includes/cv/skills.html @@ -1,4 +1,4 @@ -{% if cv.skills. %} +{% if cv.skills %}

Skills

@@ -17,4 +17,4 @@ {% endfor %}
-{% endif %} \ No newline at end of file +{% endif %}