{% extends "base.html" %} {% block title %}UNL 2 RDF demo{% endblock %} {% block content %} {% if not unl %}

Enter some UNL here I will convert it for you

Tell me which output(s) you want

{% else %} {% if output['error'] %}

Error

        {{ output['error'] }}
        
{% endif %} {% if output['dot'] %}

Unl graph

{{ output['dot'] | safe }} {% endif %} {% if output['rdf'] %}

RDF

            
                {{ output['rdf'] }}
            
        
{% endif %}

UNL

        
            {{ unl }}
        
    
{% endif %} {% endblock %}