2021-08-20 UTC
Seirdy, KartikPrabhu and jacky joined the channel
# 04:15 GWG KartikPrabhu: I'm just updating some broken wiki links.
# 04:17 GWG !tell barnaby Your SSL cert is expired.
# 04:17 Loqi Ok, I'll tell them that when I see them next
jacky, gxt_, Seirdy and hendursa1 joined the channel
# 08:22 capjamesg[d] Does anyone have a page on their site for showing their latest posts in each category?
# 08:23 capjamesg[d] My homepage is for long-form content only. I was thinking about adding a /recent/ page to show recent posts in each category.
jacky, n8chz and tetov-irc joined the channel
# 12:12 Murray[d] capjamesg[d] I've been wanting to add category feeds for a while. Currently I "use" my search filters as a shortcut (until I can be bothered to actually implement it properly) 😄
jacky and nertzy joined the channel
# 13:19 capjamesg[d] I built a category:"IndieWeb or whatever other category" filter into my search engine for that reason.
# 13:20 capjamesg[d] GitHub Pages is limited in what plugins it supports for Jekyll, the software I use for my blog, so I can't really build lots of category pages.
jacky, Moosadee, Allie, [manton], shoesNsocks1, sennomo, hendursaga, gRegor, ben_thatmustbeme, gRegorLove_ and Rattroupe joined the channel
# 18:34 Rattroupe I use Jekyll and it automatically builds recent posts, categories, etc. But I'm not using GitHub pages
qa6_, anyhow, jacky, KartikPrabhu, tetov-irc and [Gabriele_Girel] joined the channel
# 22:47 [Gabriele_Girel] [capjamesg] I use Jekyll for my website too. Dunno if this can help, but to show just the latest post in each category you can iterate through the categories and show the first post only. You can make such a page with something like this:
# 22:47 [Gabriele_Girel] ```{% assign _collections = site.categories | sort %}
# 22:47 [Gabriele_Girel] {% for collection in _collections %}
# 22:47 [Gabriele_Girel] {% assign post = collection[1][0] %}
# 22:47 [Gabriele_Girel] <h1>{{ collection[0] }}
</h1>
# 22:47 [Gabriele_Girel] <h2><a href="{{ post.url }}">{{ post.title }}
</a></h2>
# 22:47 [Gabriele_Girel] <div>
# 22:47 [Gabriele_Girel] <h4 class="card-text">{{ post.excerpt | strip_html | truncatewords:30 }}
</h4>
# 22:47 [Gabriele_Girel] {{post.content}}
# 22:47 [Gabriele_Girel] </div>
# 22:47 [Gabriele_Girel] {% assign pages_list = nil %}
# 22:47 [Gabriele_Girel] {% assign group = nil %}
# 22:47 [Gabriele_Girel] {% endfor %}
```
# 22:47 [Gabriele_Girel] [Murray] let me know if you find a way to add category feed! I am stuck with only tag feeds atm... 😞
westie[d] joined the channel