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;








0















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










share|improve this question




























    0















    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










    share|improve this question
























      0












      0








      0








      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










      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 8 at 23:31









      TofuwarriorTofuwarrior

      456721




      456721






















          1 Answer
          1






          active

          oldest

          votes


















          0














          You simply need to configure Jekyll for your custom collection.



          In _config.yml :



          collections:
          navtiles:


          See documentation.






          share|improve this answer























          • 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











          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
          );



          );













          draft saved

          draft discarded


















          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









          0














          You simply need to configure Jekyll for your custom collection.



          In _config.yml :



          collections:
          navtiles:


          See documentation.






          share|improve this answer























          • 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















          0














          You simply need to configure Jekyll for your custom collection.



          In _config.yml :



          collections:
          navtiles:


          See documentation.






          share|improve this answer























          • 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













          0












          0








          0







          You simply need to configure Jekyll for your custom collection.



          In _config.yml :



          collections:
          navtiles:


          See documentation.






          share|improve this answer













          You simply need to configure Jekyll for your custom collection.



          In _config.yml :



          collections:
          navtiles:


          See documentation.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          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

















          • 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



















          draft saved

          draft discarded
















































          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

          2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived

          Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme