From 1643aef67d828ff7ca47f63409f23852f8e75e83 Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Thu, 18 Jul 2013 09:28:25 +0100 Subject: Navigation improvements * Drop the front page - this just gets in the way. Redirect to the layers list instead. This has meant adding a touch more text to the about page and adding the FAQ link to the footer. * Use a separate navbar to hold the branch selector and the main top-level pages (Layers, Recipes, Machines) instead of tabs * All pages depending on a branch selection are now under branch// so we don't need to have the branch selection on every page. * Use breadcrumbs on recipe detail and layer detail pages instead of tabs * Add title to recipe detail page Signed-off-by: Paul Eggleton --- templates/base_toplevel.html | 59 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 templates/base_toplevel.html (limited to 'templates/base_toplevel.html') diff --git a/templates/base_toplevel.html b/templates/base_toplevel.html new file mode 100644 index 0000000000..aad44cb676 --- /dev/null +++ b/templates/base_toplevel.html @@ -0,0 +1,59 @@ +{% extends "base.html" %} +{% load i18n %} + +{% load url from future %} +{% comment %} + + layerindex-web - top level page template + + Copyright (C) 2013 Intel Corporation + Licensed under the MIT license, see COPYING.MIT for details + +{% endcomment %} + +{% block content %} + +
+
+ + + + {% block content_inner %}{% endblock %} + +
+
+ +{% endblock %} \ No newline at end of file -- cgit 1.2.3-korg