
Changed description from h3 to h2 to match the other header Created api page classes for consistent styling Add styles for info-bar section Wrapped pre tags for code not to go off of screen
15 lines
467 B
HTML
15 lines
467 B
HTML
{% import "lib/paramList.html" as params -%}
|
|
{% extends 'layout/api-base.template.html' -%}
|
|
|
|
{% block details %}
|
|
<div class="api-container">
|
|
{% include "includes/_class-overview.html" %}
|
|
{% block additional %}{% endblock %}
|
|
{% include "includes/_description.html" %}
|
|
{% include "includes/_annotations.html" %}
|
|
{% include "includes/_constructor.html" %}
|
|
{% include "includes/_statics.html" %}
|
|
{% include "includes/_members.html" %}
|
|
</div>
|
|
{% endblock %}
|