Is there any tutorial on how to set up a blog from scratch? I'm trying to get my head around the antimatter blog setup, but for a beginner I struggle a bit with all the parts and how they play together.
It'd be nice to have a basic tutorial that starts with how to get the listing page with full articles first, then perhaps change the full list to a list with summaries. Tags could be added next, then pagination and so on. This would help a lot to get your head around how everything fits together.
For example, antimatter does the following in blog_item.html.twig:
{% if page.header.continue_link is sameas(false) %}
...
{% elseif truncate and page.summary != page.content %}
...
{% elseif truncate %}
{% if page.summary != page.content %}
...
{% else %}
...
{% endif %}
{% else %}
....
{% endif %}
First I am not sure what the continue_link setting is for?
Also isn't the second check for page.summary != page.content redundant? It should never be called with the truncate and page.summary != page.content a few lines before, right?
Why is show_prev_next only set true if the blog item is not truncated?