forked from joomla/api.joomla.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrait.html.twig
More file actions
26 lines (22 loc) · 801 Bytes
/
trait.html.twig
File metadata and controls
26 lines (22 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{% extends 'layout.html.twig' %}
{% import 'base/macros.html.twig' as macros %}
{% use 'base/class.sidebar.html.twig' %}
{% block title %}
{{ parent() }} » {{ node.FullyQualifiedStructuralElementName }}
{% endblock %}
{% block content %}
<div class="row-fluid">
<aside class="span5">
{{ block('sidebar') }}
</aside>
<main class="span7">
<div class="element element--trait">
{% include 'class/base.element.html.twig' with {'node': node, 'type': 'trait'} %}
</div>
<ul class="breadcrumb">
{{ macros.buildBreadcrumb(node.namespace) }}
<li class="active"><span class="divider">\</span> {{ node.name }}</li>
</ul>
</main>
</div>
{% endblock %}