Open davidrhoden opened 2 years ago
Oh line 3 of /_layouts/secondary-no-sidebar.html
is the front-matter delineator (---
). There's no column 33.
Here's that whole file:
---
layout: default
---
{% if page.section %}
{% assign section=page.section %}
{% elsif page.collection %}
{% assign section=page.collection %}
{% endif %}
{% assign items=site[section] %}
<section id="secondary-page">
<div class="container">
<div id="main-content" class="no-sidebar">
<div class="container column">
{{ content }}
</div>
</div>
{% if page.skip-blocks != true %}
{% include child-menu.html items=items %}
{% endif %}
</div>
</section>
Sorry, I'm kind of new to Jekyll.
I have a site on CloudCannon for a client. The helpful people at CloudCannon said the plugin jekyll-responsive-image is breaking my builds, and I need to "change the front matter related to the images" being processed by the plugin. I presume that is all of them, and I just don't see that being feasible. So I'd like to try removing the plugin.
Here's the error it gives:
The images appear in the templates like this:
{% responsive_image_block %}{% endresponsive_image_block %}
Can I replace that with something like
{% image_block %}
?