summaryrefslogtreecommitdiff
blob: 2d91149646abd2466ab141229132ec91111eecbd (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
62
63
64
65
66
67
68
69
70
{% extends "layout/base.html" %}
{% block content %}
<div class="jumbotron">
  <h2 class="site-welcome stick-top">Welcome to the Home of <span class="text-primary">19,363</span> Gentoo Packages</h2>
  <form action="/packages/search" method="get">
    <div class="typeahead-container">
      <div class="typeahead-field">
        <span class="typeahead-query">
          <input id="q" name="q" type="search" autocomplete="off" placeholder="Find Packages" aria-label="Find Packages" autofocus>
        </span>
        <span class="typeahead-button">
          <button type="submit" title="Find" aria-label="Find">
            <span class="typeahead-search-icon"></span><span class="sr-only">Find</span>
          </button>
        </span>
      </div>
    </div>
  </form>
</div>
<div class="panel panel-default">
  <div class="panel-heading">
    <h3 class="panel-title">
      <span class="fa fa-fw fa-history"></span>
      <a href="/packages/added">Added Packages</a>
    </h3>
  </div>
  <div class="table-responsive">
    <table class="table table-striped">
      {% include "includes/frontpage/new_packages" %}
    </table>
  </div>
</div>
<div class="panel panel-default">
  <div class="panel-heading">
    <h3 class="panel-title">
      <span class="fa fa-fw fa-asterisk"></span>
      <a href="/packages/updated">Updated Packages</a>
    </h3>
  </div>
  <ul class="list-group">
    {% include "includes/frontpage/updated_packages" %}
  </ul>
</div>
<div class="panel panel-default">
  <div class="panel-heading">
    <h3 class="panel-title">
      <span class="fa fa-fw fa-history"></span>
      <a href="/packages/added">New Build Requst On Packages</a>
    </h3>
  </div>
  <div class="table-responsive">
    <table class="table table-striped">
      {% include "includes/frontpage/new_build_req" %}
    </table>
  </div>
</div>
<div class="panel panel-default">
  <div class="panel-heading">
    <h3 class="panel-title">
      <span class="fa fa-fw fa-history"></span>
      <a href="/packages/added">New Build Logs On Packages</a>
    </h3>
  </div>
  <div class="table-responsive">
    <table class="table table-striped">
      {% include "includes/frontpage/new_logs" %}
    </table>
  </div>
</div>
{% endblock %}