14 lines
553 B
HTML
14 lines
553 B
HTML
{% import "lib/directiveHelpers.html" as directiveHelper -%}
|
|
{% import "lib/paramList.html" as params -%}
|
|
{% extends 'class.template.html' -%}
|
|
|
|
{% block overview %}{% include "includes/directive-overview.html" %}{% endblock %}
|
|
{% block additional -%}
|
|
{% include "includes/selectors.html" %}
|
|
{$ directiveHelper.renderBindings(doc.inputs, 'inputs', 'input', 'Inputs') $}
|
|
{$ directiveHelper.renderBindings(doc.outputs, 'outputs', 'output', 'Outputs') $}
|
|
{% include "includes/export-as.html" %}
|
|
{% endblock %}
|
|
|
|
{% block annotations %}{% endblock %}
|