89 lines
3.3 KiB
HTML
89 lines
3.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<title>Match Video & Stats</title>
|
|
<link rel="stylesheet" href="styles/main.css">
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<h1>Robotics Match - Video and Match Statistics</h1>
|
|
<nav>
|
|
<a href="/index.html">Home</a>
|
|
<a href="/projects.html">Projects</a>
|
|
<a href="/resources.html">Resources</a>
|
|
<a href="/match.html">Example FRC Match</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
<article>
|
|
<section>
|
|
<h2>Match Video</h2>
|
|
<p>This video shows the first finals match of Einstein field from 2025's world champtionships</p>
|
|
<video autoplay controls width="720" height="405">
|
|
<source src="media/videos/einstein-final1-2025-720p.mp4" type="video/mp4">
|
|
Your browser does not support the video tag.
|
|
</video>
|
|
|
|
<p>Here is an alternative view from the audience</p>
|
|
<video controls width="720" height="405">
|
|
<source src="media/videos/einstein-final1-2025-720-alternate.mp4" type="video/mp4">
|
|
Your browser does not support the video tag.
|
|
</video>
|
|
|
|
<p>If you'd like to listen only:</p>
|
|
<audio controls>
|
|
<source src="media/audio/einstein-final1-2025-audio.mp3" type="audio/mpeg">
|
|
Your browser does not support the audio element.
|
|
</audio>
|
|
</section>
|
|
|
|
<section>
|
|
<h2>Match Statistics</h2>
|
|
<p>Below is a summary table of key match stats for the video above.</p>
|
|
|
|
<table>
|
|
<caption>Einstein Finals 1 (2025)</caption>
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">Alliance</th>
|
|
<th scope="col">Auto Points</th>
|
|
<th scope="col">Teleop Points</th>
|
|
<th scope="col">Endgame</th>
|
|
<th scope="col">Foul Adjustments</th>
|
|
<th scope="col">Total</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<th scope="row">Red</th>
|
|
<td>72</td>
|
|
<td>181</td>
|
|
<td>36</td>
|
|
<td>6</td>
|
|
<td class="totalcol">295</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Blue</th>
|
|
<td>69</td>
|
|
<td>176</td>
|
|
<td>36</td>
|
|
<td>0</td>
|
|
<td class="totalcol">281</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</section>
|
|
</article>
|
|
</main>
|
|
|
|
<footer id="site-footer">
|
|
<a href="https://git.munebase.dev/Munelit/munebase.dev">Source for this site can be found here.</a>
|
|
</footer>
|
|
</body>
|
|
|
|
</html> |