Skip to content

Commit 2b5a4da

Browse files
Add common navigation bar to improve page accessibility
1 parent 4c2be1a commit 2b5a4da

3 files changed

Lines changed: 11 additions & 0 deletions

File tree

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<!-- ε…±ι€šγƒŠγƒ“γ‚²γƒΌγ‚·γƒ§γƒ³ -->
2+
<nav style="margin-bottom: 20px; padding: 10px; background-color: #f8f9fa; border-radius: 4px;">
3+
<a href="/results" style="text-decoration: none; color: #007bff; margin-right: 15px;">πŸ“Š Results</a>
4+
<a href="/systemlist" style="text-decoration: none; color: #007bff; margin-right: 15px;">πŸ–₯️ Systems</a>
5+
<a href="/results_confidential" style="text-decoration: none; color: #007bff; margin-right: 15px;">πŸ”’ Confidential</a>
6+
<a href="/estimated_results" style="text-decoration: none; color: #007bff;">πŸ“ˆ Estimated</a>
7+
</nav>

β€Žresult_server/templates/results.htmlβ€Ž

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
</head>
88
<body>
99

10+
{% include "_navigation.html" %}
11+
1012
<h1>Results</h1>
1113
<input type="text" id="filterInput" onkeyup="filterTable()" placeholder="Search by multiple keywords...">
1214
<br><br>

β€Žresult_server/templates/systemlist.htmlβ€Ž

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
</head>
88
<body>
99

10+
{% include "_navigation.html" %}
11+
1012
<h1>Available Computing Systems</h1>
1113

1214
<table>

0 commit comments

Comments
Β (0)