{% use 'elements/constant.html.twig' %}
{% use 'elements/property.html.twig' %}
{% use 'elements/method.html.twig' %}
{% use 'elements/namespaces.sidebar.html.twig' %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
<meta charset="utf-8"/>
<title>{% block title %}{{ project.name }}{% endblock %}</title>
<meta name="author" content=""/>
<meta name="description" content=""/>
{{ renderBaseUrlHeader() }}
<link href="{{ path('css/bootstrap-combined.no-icons.min.css') }}" rel="stylesheet">
<link href="{{ path('css/font-awesome.min.css') }}" rel="stylesheet">
<link href="{{ path('css/prism.css') }}" rel="stylesheet" media="all"/>
<link href="{{ path('css/template.css') }}" rel="stylesheet" media="all"/>
{% block stylesheets %}{% endblock %}
<!--[if lt IE 9]>
<script src="{{ path('js/html5.js') }}"></script>
<![endif]-->
<script src="{{ path('js/jquery-1.11.0.min.js') }}"></script>
<script src="{{ path('js/ui/1.10.4/jquery-ui.min.js') }}"></script>
<script src="{{ path('js/bootstrap.min.js') }}"></script>
<script src="{{ path('js/jquery.smooth-scroll.js') }}"></script>
<script src="{{ path('js/prism.min.js') }}"></script>
<!-- TODO: Add http://jscrollpane.kelvinluck.com/ to style the scrollbars for browsers not using webkit-->
{% block javascripts %}{% endblock %}
<link rel="shortcut icon" href="{{ path('images/favicon.ico') }}"/>
<link rel="apple-touch-icon" href="{{ path('images/apple-touch-icon.png') }}"/>
<link rel="apple-touch-icon" sizes="72x72" href="{{ path('images/apple-touch-icon-72x72.png') }}"/>
<link rel="apple-touch-icon" sizes="114x114" href="{{ path('images/apple-touch-icon-114x114.png') }}"/>
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<i class="icon-ellipsis-vertical"></i>
</a>
<a class="brand" href="{{ path('index.html') }}">{{ project.name }}</a>
<div class="nav-collapse">
<ul class="nav pull-right">
{% if project.namespace.children|length > 0 %}
<li class="dropdown">
<a href="{{ path('index.html') }}" class="dropdown-toggle" data-toggle="dropdown">
API Documentation <b class="caret"></b>
</a>
<ul class="dropdown-menu">
{% for namespace in project.namespace.children|sort_asc %}
<li>{{ namespace|route|raw }}</li>
{% endfor %}
</ul>
</li>
{% endif %}
<li class="dropdown" id="charts-menu">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
Charts <b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li>
<a href="{{ path('graphs/class.html') }}">
<i class="icon-list-alt"></i> Class hierarchy diagram
</a>
</li>
</ul>
</li>
<li class="dropdown" id="reports-menu">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li>
<a href="{{ path('reports/errors.html') }}">
{% set errorCount = 0 %}
{% for file in project.files %}
{% set errorCount = errorCount + file.allerrors.count %}
{% endfor %}
<i class="icon-list-alt"></i> Errors <span class="label label-info pull-right">{{ errorCount }}</span>
</a>
</li>
<li>
<a href="{{ path('reports/markers.html') }}">
{% set markerCount = 0 %}
{% for file in project.files %}
{% set markerCount = markerCount + file.markers.count %}
{% endfor %}
<i class="icon-list-alt"></i> Markers <span class="label label-info pull-right">{{ markerCount }}</span>
</a>
</li>
<li>
<a href="{{ path('reports/deprecated.html') }}">
{% set deprecatedCount = 0 %}
{% for element in project.indexes.elements if element.deprecated %}
{% set deprecatedCount = deprecatedCount + element.tags.deprecated.count %}
{% endfor %}
<i class="icon-list-alt"></i> Deprecated <span class="label label-info pull-right">{{ deprecatedCount }}</span>
</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
</div>
<!--<div class="go_to_top">-->
<!--<a href="#___" style="color: inherit">Back to top  <i class="icon-upload icon-white"></i></a>-->
<!--</div>-->
</div>
<div id="___" class="container-fluid">
{% block content %}{% endblock %}
<footer class="row-fluid">
<section class="span10 offset2">
<section class="row-fluid">
<section class="span10 offset1">
<section class="row-fluid footer-sections">
<section class="span4">
{#Doc#}
<h1><i class="icon-code"></i></h1>
<div>
<ul>
{% for namespace in project.namespace.children|sort_asc %}
<li>{{ namespace|route|raw }}</li>
{% endfor %}
</ul>
</div>
</section>
<section class="span4">
{#Graphs#}
<h1><i class="icon-bar-chart"></i></h1>
<div>
<ul>
<li><a href="{{ path('graphs/class.html') }}">Class Hierarchy Diagram</a></li>
</ul>
</div>
</section>
<section class="span4">
{#Reports#}
<h1><i class="icon-pushpin"></i></h1>
<div>
<ul>
<li><a href="{{ path('reports/errors.html') }}">Errors</a></li>
<li><a href="{{ path('reports/markers.html') }}">Markers</a></li>
</ul>
</div>
</section>
</section>
</section>
</section>
<section class="row-fluid">
<section class="span10 offset1">
<hr />
Documentation is powered by <a href="https://www.phpdoc.org/">phpDocumentor </a> and authored
on {{ "now"|date('F jS, Y \\a\\t H:i') }}.
</section>
</section>
</section>
</footer>
</div>
</body>
</html>