diff options
author | Adam LeBlanc <aleblanc@iol.unh.edu> | 2020-03-05 12:37:38 -0500 |
---|---|---|
committer | Adam LeBlanc <aleblanc@iol.unh.edu> | 2020-03-12 14:07:06 -0400 |
commit | 176ec9aacbc87e6077e8807c60f95a1ccbbc26e3 (patch) | |
tree | a3fa9455b640637eaa513c7da8da40ad76a97b94 /src/templates/akraino/base.html | |
parent | 8eab4c4a801a367f74347627c19dd721f75c7a62 (diff) |
Add akraino template for dashboard
Signed-off-by: Adam LeBlanc <aleblanc@iol.unh.edu>
Change-Id: I02242e00779bcae7cd7622c2e891e4199c8d0e71
Signed-off-by: Adam LeBlanc <aleblanc@iol.unh.edu>
Diffstat (limited to 'src/templates/akraino/base.html')
-rw-r--r-- | src/templates/akraino/base.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/templates/akraino/base.html b/src/templates/akraino/base.html new file mode 100644 index 0000000..1368476 --- /dev/null +++ b/src/templates/akraino/base.html @@ -0,0 +1,24 @@ +{% extends "base/base.html" %} +{% load staticfiles %} +{% block bgColor %} +<style> +.bgAkr { + background: #d9c2f2; +} +</style> +<nav class="navbar navbar-light bgAkr navbar-fixed-top border-bottom py-0 mb-0" role="navigation"> +{% endblock bgColor %} + +{% block logo %} +<div class="col-12 col-sm order-1 order-sm-2 text-center text-lg-left"> + <a href="https://www.lfedge.org/projects/akraino/" class="navbar-brand"> + <img src="{% static "img/akraino_logo.logo" %}"> + </a> + + <a class="navbar-brand d-none d-lg-inline" href={% url 'dashboard:index' %}> + Akraino Dashboard + </a> +</div> +{% endblock logo %} +{% block dropDown %} +{% endblock dropDown %} |