Skip to content
Grav 2.1 is out: every page speaks Markdown. Read the announcement →

Get most recent posts when using sub-folders

Started by Trevor Robertson 7 years ago · 0 replies · 595 views
7 years ago

This is easy to do if you just have a standard blog setup, as then you can use the recipe found here. However I setup sub-folders for my blog (a folder for each year), so I found this to be trickier. I have a solution that works, so I'm posting that below to help anyone else. But then I have questions below about it...

TWIG
{% set blog_posts =
  page.collection({
    'items':{
      '@page.descendants': '/blog'
    },
    'filter': {
      'type': 'item'
    },
    'order': {
        'by': 'date',
        'dir': 'desc'
    },
    'limit': 5,
  })
%}

{% for post in blog_posts %}
  <p>{{ post.title }}</p>
  <a href="{{ post.url }}">LINK!</a>"
{% endfor %}

So while this works fine I wondered if this was the best way to do it? Also, on a related note, is it even a good practice to use sub-folders for your blog? I thought it might be nice to have folder organization for years to keep things tidy but it seems to create more issues than it's worth. Any advice from more experienced users would be great...

👍 1

Suggested topics

Topic Participants Replies Views Activity
General · by jeremycherfas, 4 days ago
3 92 1 hour ago
General · by Old Man Umby, 2 days ago
1 60 2 days ago
General · by Sebastian, 4 days ago
1 81 4 days ago
General · by Andy Miller, 2 weeks ago
0 216 2 weeks ago
General · by ready-4-IT, 6 months ago
1 716 3 weeks ago