EaglerArchive/archive.html

53 lines
1.4 KiB
HTML
Raw Permalink Normal View History

2024-04-25 14:35:33 -05:00
<!DOCTYPE html>
<html lang="en">
2024-04-25 14:35:33 -05:00
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EaglerArchive</title>
<link rel="stylesheet" href="./stylesheet.css">
2024-04-27 03:23:05 -05:00
<link rel="stylesheet" href="./nav_bar.css">
2024-04-27 10:26:54 -05:00
<link rel="stylesheet" href="./archive_stylesheet.css">
2024-05-09 04:25:46 -05:00
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$(function(){
$("#nav_bar").load("./navbar.html");
});
</script>
2024-04-25 14:35:33 -05:00
</head>
2024-04-25 14:35:33 -05:00
<body>
2024-05-09 04:25:46 -05:00
<div id="nav_bar"></div>
2024-04-25 14:35:33 -05:00
2024-04-27 03:23:05 -05:00
<div id="view">
<div class="page-title">
<hr>
<h1>Archive</h1>
<hr>
2024-04-25 14:35:33 -05:00
</div>
<div class="page-subtitle">
<p>Clients</p>
</div>
<div class="box-container">
<a class="box" href="./clients/1.3/1_3Clients.html">
<div class="box-content">
<p>Eaglercraft 1.3 Clients</p>
2024-04-27 03:23:05 -05:00
</div>
</a>
<a class="box" href="./clients/1.5/1_5Clients.html">
<div class="box-content">
<p>Eaglercraft 1.5 Clients</p>
</div>
</a>
2024-05-09 04:25:46 -05:00
<a class="box" href="./1_8Clients.html">
<div class="box-content">
<p>EaglercraftX 1.8 Clients</p>
2024-04-27 03:23:05 -05:00
</div>
</a>
2024-04-25 14:35:33 -05:00
</div>
</div>
</body>
2024-04-25 14:35:33 -05:00
</html>