75 lines
1.9 KiB
HTML
75 lines
1.9 KiB
HTML
<!-- page.html -->
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{% include 'header.html' %}
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Thelandar Bot - Stronghold Kingdoms</title>
|
|
<!-- Include any necessary styles or scripts here -->
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f2f2f2;
|
|
color: #333;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
header {
|
|
background-color: #333;
|
|
color: #fff;
|
|
padding: 10px;
|
|
text-align: center;
|
|
}
|
|
|
|
.container {
|
|
max-width: 800px;
|
|
margin: 20px auto;
|
|
padding: 20px;
|
|
background-color: #fff;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
h1 {
|
|
color: #333;
|
|
}
|
|
|
|
p {
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* Add any additional styling as needed */
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Thelandar Bot - Stronghold Kingdoms</h1>
|
|
</header>
|
|
|
|
<div class="container">
|
|
<h2>Welcome to the Thelandar Bot Page!</h2>
|
|
|
|
<p>
|
|
Thank you for using the Thelandar bot for Stronghold Kingdoms. This page provides additional information and resources for using the bot effectively.
|
|
</p>
|
|
|
|
<h3>Features</h3>
|
|
<ul>
|
|
<li>Automated resource management</li>
|
|
<li>Strategic troop deployment</li>
|
|
<li>Real-time notifications</li>
|
|
<!-- Add more features as needed -->
|
|
</ul>
|
|
|
|
<h3>Documentation</h3>
|
|
<p>
|
|
For detailed instructions and documentation on using the Thelandar bot, please refer to the official documentation provided with the bot.
|
|
</p>
|
|
|
|
<!-- Add any additional content or sections as needed -->
|
|
</div>
|
|
{% include 'footer.html' %}
|
|
</body>
|
|
</html>
|