Spaces:
Runtime error
Runtime error
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> | |
| <title>Reddit Topic Modelling</title> | |
| </head> | |
| <body style="background-color:#F2FAFB;"> | |
| <img align="right" src="static/reddit-logo-youtube-png-favpng-Rukc5hsDFfci1sNk1LkFBccvW.jpeg" alt="reddit-logo" style="width:90px;height:75px;"> | |
| <div class="container"> | |
| <h3>Topics</h3> | |
| <br> | |
| <div> | |
| {% for t in topics %} | |
| {{titles[loop.index]}} | |
| {{ t|safe }} | |
| {% endfor %} | |
| </div> | |
| <br> | |
| <h3>Documents</h3> | |
| <br> | |
| <div> | |
| {% for t in docs %} | |
| {{docs_titles[loop.index]}} | |
| {{ t|safe }} | |
| {% endfor %} | |
| </div> | |
| </div> | |
| <script | |
| type="'text/javascript" | |
| src="{{ url_for('static', filename='index.js') }}"> | |
| </script> | |
| </body> | |
| </html> |