Spaces:
Sleeping
Sleeping
File size: 818 Bytes
dec369c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ title }}</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<nav>
<a href="/" class="brand">Semantic Search</a>
<a href="/">Search</a>
<a href="/dashboard">Dashboard</a>
</nav>
<main class="container">
<article class="document-view">
<div class="document-header">
<a class="back-link" href="javascript:history.back()">Back to results</a>
<div class="document-source">{{ source }}</div>
<h1>{{ title }}</h1>
<div class="document-path">{{ filepath }}</div>
</div>
<pre class="document-text">{{ text }}</pre>
</article>
</main>
</body>
</html>
|