summaryrefslogtreecommitdiffstats
path: root/templates/layerindex/classic_base.html
blob: 7ba63f51ee61c3925ed307a7dd9d914f79f23de8 (plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{% extends "base_toplevel.html" %}
{% load i18n %}

{% comment %}

  layerindex-web - OE-Classic index page template

  Copyright (C) 2013 Intel Corporation
  Licensed under the MIT license, see COPYING.MIT for details

{% endcomment %}


<!--
{% block title_append %} - OE-Classic{% endblock %}
-->

{% block branch_selector %}
{% autoescape on %}
                        <li class="dropdown">
                            <a href="#" class="dropdown-toggle" data-toggle="dropdown">
                            Branch: <b>OE-Classic</b>
                            <b class="caret"></b>
                            </a>
                            <ul class="dropdown-menu">
                                {% for branch in all_branches %}
                                    <li><a href="{% url 'layer_list' branch.name %}">
                                        {{ branch.name }}
                                        {% if branch.short_description %}
                                        ({{ branch.short_description }})
                                        {% endif %}
                                    </a></li>
                                {% endfor %}
                                <li class="divider"></li>
                                <li><a href="{% url 'classic' %}"><b>OE-Classic</b></a></li>
                            </ul>
                        </li>
{% endautoescape %}
{% endblock %}

{% block content_inner %}
{% autoescape on %}

        <div class="container-fluid">
            <div class="row-fluid">

                <h2>OE-Classic</h2>

                <p>OpenEmbedded-Classic (OE-Classic) is the name for the old monolithic version of OpenEmbedded. It contained a number of recipes some of which have not yet been migrated on top of OE-Core. To help people to find and migrate these recipes we provide an index here as well as some statistics to get an idea of the migration.</p>

                <a class="btn btn-large btn-primary" href="{% url 'classic_recipe_search' %}">Recipes</a>
                <a class="btn btn-large" href="{% url 'classic_recipe_search' %}?q=&cover_status=!">Unmigrated Recipes</a>
                <a class="btn btn-large btn-primary" href="{% url 'classic_recipe_stats' %}">Stats</a>
            </div>

        </div>

{% endautoescape %}

{% endblock %}