{% macro og_preview() %} {{config.title}} | {{social::og_title() }} {% endmacro og_preview %} {% macro og_description() %} {%- if section -%} {%- if section.description -%} {{ section.description }} {%- else -%} {{ config.description }} {%- endif -%} {%- elif page -%} {%- if page.summary | string -%} {{ page.summary | striptags | truncate(length=200) }} {%- elif page.description -%} {{ page.description }} {%- else -%} {{ config.description }} {%- endif -%} {%- endif -%} {% endmacro og_description %} {% macro og_title() %} {%- if section -%} {%- if section.title -%} {{ section.title | striptags }}{%- else -%} {{ config.description }}{%- endif -%} {%- elif page -%} {%- if page.title -%} {{ page.title | striptags }} {%- else -%} {{ config.description }} {%- endif -%} {%- elif term -%} {%- if term.name -%} {{ term.name | striptags }} {%- else -%} {{ config.description }} {%- endif -%} {%- elif taxonomy -%} {%- if taxonomy.name -%} {{ taxonomy.name | striptags }} {%- else -%} {{ config.description }} {%- endif -%} {%- endif -%} {% endmacro og_title %} {% macro og_image() %} {%- if page.extra.og_preview_img -%} {{ get_url(path=page.extra.og_preview_img) | safe }} {%- endif -%} {% endmacro og_image %}