Skip to content
Snippets Groups Projects
Commit ab8d8b9f authored by dw927's avatar dw927
Browse files

Fixed navbar links. Added navbar to home page.

parent 31f71764
No related branches found
No related tags found
1 merge request!4Dwelsh
......@@ -8,6 +8,7 @@
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
</head>
<body>
{% include 'includes/navbar.html' %}
<h1>Welcome to the Digital Pathology Slide Analyzer.</h1>
<br>
<h2>Please select a file to upload.</h2>
......
......@@ -2,10 +2,10 @@
<a class="navbar-brand" href="#">Digital Pathology</a>
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="./reports">Reports</a>
<a class="nav-link" href="{{ url_for('home')}}">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">New Report</a>
<a class="nav-link" href="{{ url_for('reports')}}">Reports</a>
</li>
</ul>
</nav>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment