batflip/public/pages/index.html

25 lines
579 B
HTML
Raw Normal View History

2025-04-11 16:39:17 -04:00
<!DOCTYPE html>
<html>
<head>
<title>BatFlip Scoring App</title>
2025-04-27 11:34:30 -04:00
{% header %}
2025-04-11 16:39:17 -04:00
</head>
<body>
<header id="site-header">
<div id="site-name">
<a href="/">BatFlip</a>
</div>
<div id="site-menu">
<ul>
<li><a href="/scorecards">Past Scorecards</a></li>
<li><a href="/add-scorecard">Add New</a></li>
</ul>
</div>
</header>
<div id="main-content">
<h1>Live Baseball Scoring App, written in Rust</h1>
2025-04-27 11:34:30 -04:00
<img src="./images/fenway.jpg" alt="some image" />
</div>
2025-04-11 16:39:17 -04:00
</body>
</html>