File size: 912 Bytes
8b1c859 eeafaaa 8b1c859 eeafaaa 8b1c859 eeafaaa 8b1c859 |
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 33 34 35 36 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Information Page</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600&display=swap">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;600&display=swap">
<style>
* {
font-family: "Source Sans Pro";
}
.doc-box {
padding: 10px;
margin-top: 10px;
background-color: #374151;
border-radius: 6px;
color: #111 !important;
box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px 0px;
}
</style>
</head>
<body>
<h2>Context:</h2>
{% for doc in documents %}
<div class="doc-box">
{{ doc }}
</div>
{% endfor %}
</body>
</html>
|