webrl/VAB-WebArena-Lite/environment_docker/webarena-homepage/templates/index.html
2025-04-23 17:01:18 +08:00

128 lines
4.0 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Homepage</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap" rel="stylesheet">
<style>
body {
font-family: Arial, sans-serif;
background-color: white;
margin: 0;
padding: 0;
line-height: 1.6;
}
#container {
width: 90%;
margin: auto;
overflow: hidden;
}
#header {
background-color: #f4f7f9;
color: #232f34;
padding-top: 30px;
min-height: 70px;
border-bottom: #b1c1c6 3px solid;
font-family: 'Roboto', sans-serif;
}
#header h1 {
padding: 5px;
margin: 0;
text-align: center;
font-weight: 500;
}
.card {
border: 1px solid #ddd;
border-radius: 5px;
width: 200px; /* Changed width */
height: 200px; /* Added height */
text-align: center;
margin: 10px;
padding: 10px;
box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
display: inline-block;
overflow: auto; /* To handle content that might overflow */
}
.card img {
width: 35%;
}
.card h2 {
font-size: 15px;
}
.card p {
font-size: 14px;
}
.card a {
color: #35424a;
text-decoration: none;
}
</style>
</head>
<body>
<div id="container">
<br/>
<div id="header">
<h1>Welcome to VisualWebArena</h1>
</div>
<div class="card" role="region" aria-label="Classifieds">
<img src="{{ url_for('static', filename='figures/classifieds.png') }}" alt="Logo for Classifieds">
<a href="<your-server-hostname>:9980">
<h2 id="appName">Classifieds</h2>
</a>
<p id="appDescription">A classifieds website for people to sell and buy things</p>
</div>
<div class="card" role="region" aria-label="OneStopShop">
<img src="{{ url_for('static', filename='figures/onestopshop.png') }}" alt="Logo for OneStopShop">
<a href="<your-server-hostname>:7770">
<h2 id="appName">OneStopShop</h2>
</a>
<p id="appDescription">An online shopping site</p>
</div>
<div class="card" role="region" aria-label="Reddit">
<img src="{{ url_for('static', filename='figures/reddit.png') }}" alt="Logo for Reddit">
<a href="<your-server-hostname>:9999/forums/all">
<h2 id="appName">Reddit</h2>
</a>
<p id="appDescription">A social news aggregation and discussion website</p>
</div>
<div class="card" role="region" aria-label="Calculator">
<img src="{{ url_for('static', filename='figures/calculator.png') }}" alt="Logo for Calculator">
<a href="calculator.html">
<h2 id="appName">Calculator</h2>
</a>
<p id="appDescription">A calculator</p>
</div>
<div class="card" role="region" aria-label="Scratchpad">
<img src="{{ url_for('static', filename='figures/scratchpad.png') }}" alt="Logo for Scratchpad">
<a href="scratchpad.html">
<h2 id="appName">Scratchpad</h2>
</a>
<p id="appDescription">A scratchpad for taking notes</p>
</div>
<div class="card" role="region" aria-label="Wikipedia">
<img src="{{ url_for('static', filename='figures/wikipedia.png') }}" alt="Logo for Wikipedia">
<a href="<your-server-hostname>:8888/wikipedia_en_all_maxi_2022-05/A/User:The_other_Kiwix_guy/Landing">
<h2 id="appName">Wikipedia</h2>
</a>
<p id="appDescription">An online encyclopedia</p>
</div>
<!-- Repeat the above card structure for each app -->
</div>
</body>
</html>