Jekyll 3 not picking up custom collection in includejekyll not generating _postsEmoji for jekylljekyll 3.0.0-beta error Is a directory @ rb_sysopenJekyll collections only show some itemstext overflowing (i.e. not wrapping) in Jekyll blog postsame render style as github markdown page for a page on my jekyll siteReceiving 404 error for assets in Github Pages Jekyll siteLoading local libaries in jekyll (Liquid template library + ruby bundler)Adding of any html file from the minima/_includes directory into the website directory cause the github build to failJekyll custom theme not working on Github pages
In Romance of the Three Kingdoms why do people still use bamboo sticks when papers are already invented?
Fully-Firstable Anagram Sets
In a Spin are Both Wings Stalled?
How to show the equivalence between the regularized regression and their constraint formulas using KKT
1960's book about a plague that kills all white people
Python: return float 1.0 as int 1 but float 1.5 as float 1.5
Should I tell management that I intend to leave due to bad software development practices?
Is it unprofessional to ask if a job posting on GlassDoor is real?
intersection of two sorted vectors in C++
What's the point of deactivating Num Lock on login screens?
Can I use a neutral wire from another outlet to repair a broken neutral?
90's TV series where a boy goes to another dimension through portal near power lines
Has there ever been an airliner design involving reducing generator load by installing solar panels?
Is it possible to create light that imparts a greater proportion of its energy as momentum rather than heat?
I Accidentally Deleted a Stock Terminal Theme
Is it possible to run Internet Explorer on OS X El Capitan?
Emailing HOD to enhance faculty application
What is the word for reserving something for yourself before others do?
Is the Joker left-handed?
Could gravitational lensing be used to protect a spaceship from a laser?
Brothers & sisters
Forgetting the musical notes while performing in concert
Etiquette around loan refinance - decision is going to cost first broker a lot of money
UK: Is there precedent for the governments e-petition site changing the direction of a government decision?
Jekyll 3 not picking up custom collection in include
jekyll not generating _postsEmoji for jekylljekyll 3.0.0-beta error Is a directory @ rb_sysopenJekyll collections only show some itemstext overflowing (i.e. not wrapping) in Jekyll blog postsame render style as github markdown page for a page on my jekyll siteReceiving 404 error for assets in Github Pages Jekyll siteLoading local libaries in jekyll (Liquid template library + ruby bundler)Adding of any html file from the minima/_includes directory into the website directory cause the github build to failJekyll custom theme not working on Github pages
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I have a simple jekyll site whcih I am developing from a jekyll template. I'm working on making it editable in netlifycms.
I've moved collections into custom directory customcollections, have specified this in _config.yml and have moved _posts directory in there. This works fine.
I have then included a component from includes/components to pull in and iterate through a custom collection _navtiles.
For some reason when I try to iterate through navtiles thus:
<div class="features">
<h3>---NAVTILES</h3>
% for navtile in site.navtiles %
<section class="post">
<span class="image"><img src=" site.baseurl navtile.image " alt="" /></span>
<div class="content">
<h3> navtile.title </h3>
<p> remove: "</p>" </p>
% if navtile.url %
<ul class="actions">
<li><a href=" navtile.url " class="button">More</a></li>
</ul>
% endif %
</div>
</section>
% endfor %
</div>
it doesn't pull in the navtile collection object that is present in customcollections/_navtiles/
But if I change site.navtiles to be site.posts then it pulls in all the blog posts quite happily.
Can anyone advise what I am doing wrong?
Site is here:
index.html - https://github.com/tofuwarrior/sites-clearspringacupuncture/blob/master/index.html
_config.yml - https://github.com/tofuwarrior/sites-clearspringacupuncture/blob/master/_config.yml
_includes/components/navtiles.html - https://github.com/tofuwarrior/sites-clearspringacupuncture/blob/master/_includes/components/navtiles.html
the component is pulled into index.html happily.
site preview is here:
http://dev.clearspringacupuncture.co.uk/
I'm stumped because it works fine with _posts I feel I must be missing some understanding of jekyll collections as I am new to jekyll.
Can anyone point me in the right direction
Thanks.
jekyll
jekyll
add a comment |
I have a simple jekyll site whcih I am developing from a jekyll template. I'm working on making it editable in netlifycms.
I've moved collections into custom directory customcollections, have specified this in _config.yml and have moved _posts directory in there. This works fine.
I have then included a component from includes/components to pull in and iterate through a custom collection _navtiles.
For some reason when I try to iterate through navtiles thus:
<div class="features">
<h3>---NAVTILES</h3>
% for navtile in site.navtiles %
<section class="post">
<span class="image"><img src=" site.baseurl navtile.image " alt="" /></span>
<div class="content">
<h3> navtile.title </h3>
<p> remove: "</p>" </p>
% if navtile.url %
<ul class="actions">
<li><a href=" navtile.url " class="button">More</a></li>
</ul>
% endif %
</div>
</section>
% endfor %
</div>
it doesn't pull in the navtile collection object that is present in customcollections/_navtiles/
But if I change site.navtiles to be site.posts then it pulls in all the blog posts quite happily.
Can anyone advise what I am doing wrong?
Site is here:
index.html - https://github.com/tofuwarrior/sites-clearspringacupuncture/blob/master/index.html
_config.yml - https://github.com/tofuwarrior/sites-clearspringacupuncture/blob/master/_config.yml
_includes/components/navtiles.html - https://github.com/tofuwarrior/sites-clearspringacupuncture/blob/master/_includes/components/navtiles.html
the component is pulled into index.html happily.
site preview is here:
http://dev.clearspringacupuncture.co.uk/
I'm stumped because it works fine with _posts I feel I must be missing some understanding of jekyll collections as I am new to jekyll.
Can anyone point me in the right direction
Thanks.
jekyll
jekyll
add a comment |
I have a simple jekyll site whcih I am developing from a jekyll template. I'm working on making it editable in netlifycms.
I've moved collections into custom directory customcollections, have specified this in _config.yml and have moved _posts directory in there. This works fine.
I have then included a component from includes/components to pull in and iterate through a custom collection _navtiles.
For some reason when I try to iterate through navtiles thus:
<div class="features">
<h3>---NAVTILES</h3>
% for navtile in site.navtiles %
<section class="post">
<span class="image"><img src=" site.baseurl navtile.image " alt="" /></span>
<div class="content">
<h3> navtile.title </h3>
<p> remove: "</p>" </p>
% if navtile.url %
<ul class="actions">
<li><a href=" navtile.url " class="button">More</a></li>
</ul>
% endif %
</div>
</section>
% endfor %
</div>
it doesn't pull in the navtile collection object that is present in customcollections/_navtiles/
But if I change site.navtiles to be site.posts then it pulls in all the blog posts quite happily.
Can anyone advise what I am doing wrong?
Site is here:
index.html - https://github.com/tofuwarrior/sites-clearspringacupuncture/blob/master/index.html
_config.yml - https://github.com/tofuwarrior/sites-clearspringacupuncture/blob/master/_config.yml
_includes/components/navtiles.html - https://github.com/tofuwarrior/sites-clearspringacupuncture/blob/master/_includes/components/navtiles.html
the component is pulled into index.html happily.
site preview is here:
http://dev.clearspringacupuncture.co.uk/
I'm stumped because it works fine with _posts I feel I must be missing some understanding of jekyll collections as I am new to jekyll.
Can anyone point me in the right direction
Thanks.
jekyll
jekyll
I have a simple jekyll site whcih I am developing from a jekyll template. I'm working on making it editable in netlifycms.
I've moved collections into custom directory customcollections, have specified this in _config.yml and have moved _posts directory in there. This works fine.
I have then included a component from includes/components to pull in and iterate through a custom collection _navtiles.
For some reason when I try to iterate through navtiles thus:
<div class="features">
<h3>---NAVTILES</h3>
% for navtile in site.navtiles %
<section class="post">
<span class="image"><img src=" site.baseurl navtile.image " alt="" /></span>
<div class="content">
<h3> navtile.title </h3>
<p> remove: "</p>" </p>
% if navtile.url %
<ul class="actions">
<li><a href=" navtile.url " class="button">More</a></li>
</ul>
% endif %
</div>
</section>
% endfor %
</div>
it doesn't pull in the navtile collection object that is present in customcollections/_navtiles/
But if I change site.navtiles to be site.posts then it pulls in all the blog posts quite happily.
Can anyone advise what I am doing wrong?
Site is here:
index.html - https://github.com/tofuwarrior/sites-clearspringacupuncture/blob/master/index.html
_config.yml - https://github.com/tofuwarrior/sites-clearspringacupuncture/blob/master/_config.yml
_includes/components/navtiles.html - https://github.com/tofuwarrior/sites-clearspringacupuncture/blob/master/_includes/components/navtiles.html
the component is pulled into index.html happily.
site preview is here:
http://dev.clearspringacupuncture.co.uk/
I'm stumped because it works fine with _posts I feel I must be missing some understanding of jekyll collections as I am new to jekyll.
Can anyone point me in the right direction
Thanks.
jekyll
jekyll
jekyll
asked Mar 8 at 23:31
TofuwarriorTofuwarrior
456721
456721
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You simply need to configure Jekyll for your custom collection.
In _config.yml :
collections:
navtiles:
See documentation.
so obvious :-) - thanks a million. I forgot that the admin/config.yml doesn't influence the main jekyll build.
– Tofuwarrior
Mar 10 at 9:17
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55072417%2fjekyll-3-not-picking-up-custom-collection-in-include%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You simply need to configure Jekyll for your custom collection.
In _config.yml :
collections:
navtiles:
See documentation.
so obvious :-) - thanks a million. I forgot that the admin/config.yml doesn't influence the main jekyll build.
– Tofuwarrior
Mar 10 at 9:17
add a comment |
You simply need to configure Jekyll for your custom collection.
In _config.yml :
collections:
navtiles:
See documentation.
so obvious :-) - thanks a million. I forgot that the admin/config.yml doesn't influence the main jekyll build.
– Tofuwarrior
Mar 10 at 9:17
add a comment |
You simply need to configure Jekyll for your custom collection.
In _config.yml :
collections:
navtiles:
See documentation.
You simply need to configure Jekyll for your custom collection.
In _config.yml :
collections:
navtiles:
See documentation.
answered Mar 9 at 10:45
David JacquelDavid Jacquel
38.3k379110
38.3k379110
so obvious :-) - thanks a million. I forgot that the admin/config.yml doesn't influence the main jekyll build.
– Tofuwarrior
Mar 10 at 9:17
add a comment |
so obvious :-) - thanks a million. I forgot that the admin/config.yml doesn't influence the main jekyll build.
– Tofuwarrior
Mar 10 at 9:17
so obvious :-) - thanks a million. I forgot that the admin/config.yml doesn't influence the main jekyll build.
– Tofuwarrior
Mar 10 at 9:17
so obvious :-) - thanks a million. I forgot that the admin/config.yml doesn't influence the main jekyll build.
– Tofuwarrior
Mar 10 at 9:17
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55072417%2fjekyll-3-not-picking-up-custom-collection-in-include%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown