diff options
author | Adam Hassick <ahassick@iol.unh.edu> | 2021-03-16 14:18:31 -0400 |
---|---|---|
committer | Adam Hassick <ahassick@iol.unh.edu> | 2021-03-17 15:23:00 -0400 |
commit | babedf30038b453ea7d123c9bb744f4acb14e625 (patch) | |
tree | bb34d03e56f134941e85bd374b7c074e2c3727af /src/templates/lfedge/dashboard | |
parent | 8a902d357fa6eca07384d25fac32a6e0521a63e5 (diff) |
Added LF Edge template overrides.
Signed-off-by: Adam Hassick <ahassick@iol.unh.edu>
Change-Id: If119646eee67fb7e145c5e92e64fa4f28a947dbe
Diffstat (limited to 'src/templates/lfedge/dashboard')
-rw-r--r-- | src/templates/lfedge/dashboard/landing.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/templates/lfedge/dashboard/landing.html b/src/templates/lfedge/dashboard/landing.html new file mode 100644 index 0000000..9a776dc --- /dev/null +++ b/src/templates/lfedge/dashboard/landing.html @@ -0,0 +1,23 @@ +{% extends "base/dashboard/landing.html" %} +{% block about_us %} + <p>The Shared Community Lab at the IOL aims to help development and testing of LF Edge projects by hosting hardware and providing access to the community.</p> + <p>To get started, you can request access to a pod at the right.</p> +{% endblock about_us %} + +{% block btnGrp %} +<style> +.btnLFEdge { + color: #fff; + background-color: #0049b0; +} +.btnLFEdge:hover{ + color: #fff; + background-color: #001776; +} +</style> +<p>To get started, book a pod below:</p> +<a class="btn btnLFEdge btn-lg d-flex flex-column justify-content-center align-content-center border text-white p-4" href="/booking/quick/">Book a Pod</a> +{% endblock btnGrp %} + +{% block returningUsers %} +{% endblock returningUsers %} |