-
Notifications
You must be signed in to change notification settings - Fork 0
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
Yaroslav Ivanov
committed
May 16, 2024
1 parent
9171c00
commit 704ed19
Showing
4 changed files
with
73 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,60 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>lineage2js</title> | ||
<link rel="stylesheet" href="css/bootstrap.min.css"> | ||
<script src="js/bootstrap.min.js"></script> | ||
</head> | ||
<body> | ||
<div class="d-flex flex-column vh-100"> | ||
<nav class="navbar navbar-expand-lg bg-body-tertiary"> | ||
<div class="container"> | ||
<img src="images/logo.png" width="32px" class="me-2"> | ||
<a class="navbar-brand" href="#">Lineage2JS</a> | ||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent"> | ||
<span class="navbar-toggler-icon"></span> | ||
</button> | ||
<div class="collapse navbar-collapse" id="navbarSupportedContent"> | ||
<!-- <ul class="navbar-nav me-auto mb-2 mb-lg-0"> | ||
<li class="nav-item"> | ||
<a class="nav-link active" aria-current="page" href="#">Docs</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="#">Blog</a> | ||
</li> | ||
</ul> --> | ||
</div> | ||
</div> | ||
</nav> | ||
<div class="mt-5 flex-fill"> | ||
<div> | ||
<div class="container"> | ||
<h1>Lineage 2 JS</h1> | ||
<h4>Server emulator</h4> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="footer p-4 bg-secondary text-white"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col"> | ||
<b>Resources</b> | ||
<div> | ||
<!-- <a class="d-block text-white" href="#">Docs</a> --> | ||
<a class="d-block text-white" href="https://github.com/lineage2js">Source Code</a> | ||
</div> | ||
</div> | ||
<div class="col"> | ||
<b>Community</b> | ||
<div> | ||
<a class="d-block text-white" href="https://www.youtube.com/@lineage2js">Youtube</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
Large diffs are not rendered by default.
Oops, something went wrong.