Greetings. First post in this place and am making progress on building my first site.
I chose SinglePaged as a template as it ticks all the boxes in what I’m looking for. Looking at the commit history development, stopped at v3.x. I have rearranged files using the things I learned in the Step By Step guide. So I have:
assets/css/styles.scss
_sass/base.css
_sass/main.css
_sass/skeleton.css
My styles.scss
has the correct @import "foo";
statements. The three css files are as git pulled.
When I run bundle exec jekyll serve
it chokes with the following error:
/home/pault/gems/gems/jekyll-sass-converter-2.1.0/lib/jekyll/converters/scss.rb:190:in `rescue in convert': Error: Invalid CSS after "...ig.yml)----- */": expected 1 selector or at-rule, was "{% for c in site.co" (Jekyll::Converters::Scss::SyntaxError)
on line 8:57 of _sass/main.css
Line 8 of the relevant file and its proceeding comment:
/* ----- colors (autogenerated from _config.yml)----- */
{% for c in site.colors %}
There are colour definitions in _config.yml
.
I suspect the for
statement needs writing in a different way but am unsure how to do so. Guidance would be appreciated. I am also in the Matrix/Gitter room with the same username.
edit If anyone want to poke further, the git repo for this project is Topcat Radio on Feneas GitLab.