21 lines
678 B
HTML
21 lines
678 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Photo Pipeline — Review</title>
|
|
<link rel="stylesheet" href="./css/app.css" />
|
|
</head>
|
|
<body>
|
|
<header class="app-header">
|
|
<span class="brand">Photo Pipeline</span>
|
|
<nav aria-label="Primary">
|
|
<a href="#/inventory" data-nav="inventory">Inventory</a>
|
|
<a href="#/duplicates" data-nav="duplicates">Duplicates</a>
|
|
</nav>
|
|
</header>
|
|
<main id="app" aria-live="polite"><!-- views render here --></main>
|
|
<script type="module" src="./js/app.js"></script>
|
|
</body>
|
|
</html>
|