mirror of
https://git.yoctoproject.org/poky
synced 2026-03-25 01:02:22 +01:00
This patch brings needed changes in all views so that each view passes the HTML5 compliance test by the W3C Markup Service. (Bitbake rev: 6e60ed8ab71e4300ab571f42b7af5011086df697) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
47 lines
1.2 KiB
HTML
47 lines
1.2 KiB
HTML
{% extends "base.html" %}
|
|
{% load projecttags %}
|
|
{% load humanize %}
|
|
{% block pagecontent %}
|
|
|
|
|
|
<div class="row-fluid">
|
|
<!-- Breadcrumbs -->
|
|
<div class="section">
|
|
<ul class="breadcrumb" id="breadcrumb">
|
|
<li><a href="{% url 'all-builds' %}">All builds</a></li>
|
|
{% block parentbreadcrumb %}
|
|
{% if project %}
|
|
{% if project_html %}
|
|
<li>
|
|
{{project.name}}
|
|
</li>
|
|
{% else %}
|
|
<li>
|
|
<a href="{%url 'project' project.id %}"><span id="project_name">{{project.name}}</span>
|
|
</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
{% block localbreadcrumb %}{% endblock %}
|
|
</ul>
|
|
<script>
|
|
$( function () {
|
|
$('#breadcrumb > li').append("<span class=\"divider\">→</span>");
|
|
$('#breadcrumb > li:last').addClass("active");
|
|
$('#breadcrumb > li:last > span').remove();
|
|
});
|
|
</script>
|
|
</div>
|
|
|
|
<!-- Begin main page container -->
|
|
<div style="padding: 0px, margin: 0px, display: inline">
|
|
{% block projectinfomain %}{% endblock %}
|
|
</div>
|
|
<!-- End main container -->
|
|
</div>
|
|
|
|
|
|
{% endblock %}
|
|
|