links/index.html
2023-01-03 14:47:27 -06:00

37 lines
1.6 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>{{title}}</title>
<link rel="stylesheet" href="https://maxst.icons8.com/vue-static/landings/line-awesome/line-awesome/1.3.0/css/line-awesome.min.css"/>
<link rel="stylesheet" href="style.css?ver={{version}}"/>
<script async data-website-id="{{umami.website_id}}" data-do-not-track="true" src="https://whoami.goodevilgenius.org/whoami.js?ver={{version}}"></script>
<script async src="app.js"></script>
</head>
<body>
<header class="py-3 mb-4 border-bottom">
<figure class="figure">
<img src="img/profile-manga.jpg" class="figure-img img-fluid rounded-circle" alt="{{name}}"/>
</figure>
<div class="container d-flex flex-wrap justify-content-center">
<h1 class="d-flex align-items-center me-lg-auto text-dark px-4 py-2 border border-white rounded">
{{name}}
</h1>
</div>
</header>
<section id="links" class="container">
<ul class="list-group">
{{#links}}
<li class="list-group-item text-center">
<a href="{{{url}}}" data-name="{{slug}}" rel="me" class="fs-4 text-decoration-none text-dark">
<i class="{{la}}{{^la}}lab{{/la}} la-{{icon}}"></i>
{{text}}
</a>
</li>
{{/links}}
</ul>
</section>
</body>
</html>