-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (25 loc) · 1.07 KB
/
Copy pathindex.html
File metadata and controls
26 lines (25 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html>
<head>
<title>XP.network Docs</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-wEmeIV1mKuiNpC+IOBjI7aAzPcEZeedi5yW5f2yOq55WWLwNGmvvx4Um1vskeMj0" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body class="container-fluid justify-content-center bg-dark text-white">
<div class="text-center m-5 pb-5">
<img src="xp-network.png"/>
</div>
<ul class="row list-unstyled justify-content-center">
<template name="doc-item">
<li class="col-12 fs-5">
<div class="row justify-content-center">
<a class="col-3 doc-link text-decoration-none" href="docs/{doc}">{name}</a>
<p class="col-3 doc-info text-warning">{desc}</p>
</div>
</li>
</template>
</ul>
</body>
<script src="js/snuggsi.min.js"></script>
<script src="js/main.js"></script>
</html>