-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>FrozenBlock - Home</title> | ||
<link rel="stylesheet" href="css/index.css"> | ||
</head> | ||
<body> | ||
<header> | ||
<!-- Generated header --> | ||
</header> | ||
<section> | ||
<div id="home"> | ||
<div> | ||
<img style="width: 100%" src="/assets/frozenblock/textures/title.png" alt="FrozenBlock Modding Oasis"> | ||
<p><strong>A COOL QUOTE SHOULD BE HERE</strong></p> | ||
</div> | ||
</div> | ||
<div id="slideshow-0"> | ||
<!-- Generated Mod list --> | ||
<div class="below"> | ||
<!-- TODO: Fix cursor when hovering between the list and next/prev buttons --> | ||
<a> | ||
<img class="prev" onclick="increase(0, -1)" src="/assets/frozenblock/textures/icons/prev.png" alt="<"> | ||
</a> | ||
<ul> | ||
<!-- TODO: Make this look good on mobile --> | ||
<!-- Generated list selector --> | ||
</ul> | ||
<a> | ||
<img class="next" onclick="increase(0, 1)" src="/assets/frozenblock/textures/icons/next.png" alt=">"> | ||
</a> | ||
</div> | ||
</div> | ||
<div style="height: 20px"></div> | ||
<div id="slideshow-1"> | ||
<!-- Generated Mod list --> | ||
<div class="below"> | ||
<!-- TODO: Fix cursor when hovering between the list and next/prev buttons --> | ||
<a> | ||
<img class="prev" onclick="increase(1, -1)" src="/assets/frozenblock/textures/icons/prev.png" alt="<"> | ||
</a> | ||
<ul> | ||
<!-- TODO: Make this look good on mobile --> | ||
<!-- Generated list selector --> | ||
</ul> | ||
<a> | ||
<img class="next" onclick="increase(1, 1)" src="/assets/frozenblock/textures/icons/next.png" alt=">"> | ||
</a> | ||
</div> | ||
</div> | ||
<script src="/js/main.team.js"></script> | ||
<script src="/js/main.mods.js"></script> | ||
<div style="height: 20px"></div> | ||
<script src="/js/index.js"></script> | ||
</section> | ||
<footer> | ||
<!-- Generated Footer --> | ||
</footer> | ||
</body> | ||
<script src="/js/decorator.js"></script> | ||
</html> |