{% extends "base.html" %} {% from "_macros.html" import render_resource_link, render_rdfa_resource_link, get_label, facts_panel, summary_panel, content %} {% block title %}{{this.description().value(ns.dc.title, default=get_label(this.description()))}}{% endblock %} {% block subtitle %} {% if this.description().value(ns.RDF.type) %} a {% for superClass in this.description()[ns.RDF.type] %} {% if loop.index > 1 and loop.last %} and {% endif %} {{ render_resource_link(superClass) }} {% if loop.revindex > 2 %}, {% endif %} {% endfor %} {% endif %} {% endblock %} {% block content %}
{{ summary_panel(this.description()) }} {{ content(this.description()) }}

Nanopublications for {{get_label(this.description())}}

{{ facts_panel(this.description()) }}

this is the article_view.html!

{% endblock %}