diff options
Diffstat (limited to 'python/templates/pages/home/index.html')
-rw-r--r-- | python/templates/pages/home/index.html | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/python/templates/pages/home/index.html b/python/templates/pages/home/index.html deleted file mode 100644 index 2d91149..0000000 --- a/python/templates/pages/home/index.html +++ /dev/null @@ -1,70 +0,0 @@ -{% 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 %} |