40 lines
829 B
Python
40 lines
829 B
Python
index_html = """
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>The Infinite Website</title>
|
|
</head>
|
|
<body>
|
|
<h1>The Infinite Website</h1>
|
|
<p>This is the infinite website.</p>
|
|
<p>Start here: <a href="/start">Start</a></p>
|
|
|
|
<p>Want to kmow more? <a target="_blank" href="https://gitlab.com/rogs/the-infinite-website">https://gitlab.com/rogs/the-infinite-website</a></p> # noqa E501
|
|
</body>
|
|
</html>
|
|
|
|
"""
|
|
|
|
prompt_html_template = """
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>The Infinite Website | (topic) </title>
|
|
</head>
|
|
<body>
|
|
<h1>(topic)</h1>
|
|
|
|
<div class="information-container">
|
|
(topic_info)
|
|
</div>
|
|
|
|
<div class="bottom-container">
|
|
<h2>Related Links:</h2>
|
|
<ul>
|
|
(related_links)
|
|
</ul>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
"""
|