Posts list on homepage now works the same as other category pages. Getting away from page banners on top of site. Using seo_tag.title instead of generating the same thing by hand.
11 lines
231 B
HTML
11 lines
231 B
HTML
{%- for category in site.categories -%}
|
|
{%- if category[0] != page.category -%}
|
|
{%- continue -%}
|
|
{%- endif -%}
|
|
|
|
{% assign posts = category[1] -%}
|
|
{%- include posts.html posts = posts -%}
|
|
|
|
{%- break -%}
|
|
{%- endfor -%}
|