Setting Layout As Default
{% macro layout_type(layout) %}
{% if layout=="default" %}
{% extends "default.html" %}
{% elif layout=="fixed-footer" %}
{% extends "fixed-footer.html" %}
<!--our code-->
{% else %}
{% extends "default.html" %}
{% endif %}
{% endmacro %}
{{ layout_type(layout) }}Last updated