{% extends "page/titled/default.html.twig" %} {%- block meta_title -%} {{- parent()|build_string(post) -}} {% endblock %} {% block meta_description %} {{- parent()|build_string(post) -}} {% endblock %} {% block page_title %} {{- parent()|build_string(post) -}} {% endblock %} {%- block page_subtitle -%} {% endblock %} {%- block body -%} {{ include('page/post/_post.html.twig', {full: true}) }} {% endblock %} {%- block openGraph -%} {% if not post.isQuick %} {% set name = 'Deblan Blog' %} {% set title = 'Blog - ' ~ block('meta_title') %} {% set image = post.image ? absolute_url(asset(post.image)) : null %} {% else %} {% set image = null %} {% if post.quickImage %} {% set image = post.quickImage %} {% elseif post.image %} {% set image = absolute_url(asset(post.image)) %} {% endif %} {% set title = block('meta_title') %} {% set name = '' %} {% endif %} {% if image %} {% endif %} {% endblock %}