the home site for me: also iteration 3 or 4 of my site
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: make og url load properly

+2 -2
+2 -2
templates/head.html
··· 20 20 %} {% elif section.description %} {% set description = section.description | 21 21 truncate(length=150) %} {% elif config.description %} {% set description = 22 22 config.description | truncate(length=150) %} {% endif %} {% if page.extra.image 23 - %} {% set image = get_url(path="og.png", trailing_slash=false) %} {% elif 24 - section.extra.image %} {% set image = get_url(path=section.extra.image, 23 + %} {% set image = get_url(path=current_path ~"og.png", trailing_slash=false) %} 24 + {% elif section.extra.image %} {% set image = get_url(path=section.extra.image, 25 25 trailing_slash=false) %} {% elif page.path %} {% set image = 26 26 get_url(path=page.path ~ "og.png", trailing_slash=false) %} {% else %} {% set 27 27 image = get_url(path="og.png", trailing_slash=false) %} {% endif %} {% if