| <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 ; | |
| 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> | |