38 lines
661 B
Python
38 lines
661 B
Python
index_html = """
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>My 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>
|
|
</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>
|
|
"""
|