{% set snippets = sql(""" select * from snippets where path = :snippet_path """, {"snippet_path": snippet_path}, database="tils") %} {% if snippets %} {% set snippet = snippets[0] %}

{{ snippet.title }}

{{ snippet.html|safe }} {% endif %}