stats: Update histogram on stats page to take up 100% of the width, add stats page to the base HTML nav

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
2023-09-09 23:28:45 -07:00
parent cc9c5b5f43
commit 46d66edb4d
2 changed files with 7 additions and 2 deletions

View File

@@ -16,7 +16,12 @@
</head> </head>
<body> <body>
<nav> <nav>
[ <a href="{{route_url("/")}}">Home</a> / <a href="{{route_url("/news")}}">News</a> / <a href="{{route_url("/faq")}}">FAQ</a> ] [
<a href="{{route_url("/")}}">Home</a> /
<a href="{{route_url("/stats")}}">Stats</a> /
<a href="{{route_url("/news")}}">News</a> /
<a href="{{route_url("/faq")}}">FAQ</a>
]
</nav> </nav>
{% block body %} {% block body %}
<header> <header>

View File

@@ -7,7 +7,7 @@
<div class="infobox"> <div class="infobox">
<h4>Histogram</h4> <h4>Histogram</h4>
<p> <p>
<img src="{{static_url("histogram.svg")}}" width="33%" /> <img src="{{static_url("histogram.svg")}}" width="100%" />
</p> </p>
<p> <p>
<a target="_blank" href="{{static_url("histogram.svg")}}">Click here to see the full histogram view</a> <a target="_blank" href="{{static_url("histogram.svg")}}">Click here to see the full histogram view</a>