dev.metalisp.sbt/public/examples/album.html

111 lines
2.9 KiB
HTML
Raw Normal View History

2023-07-16 11:38:15 +02:00
<!DOCTYPE html>
2023-07-19 17:47:59 +02:00
<html lang=de>
2023-07-16 11:38:15 +02:00
<head>
<meta charset=UTF-8>
2023-07-19 17:47:59 +02:00
<title>
2023-07-20 08:04:07 +02:00
Album
T
2023-07-19 17:47:59 +02:00
</title>
2023-07-16 11:38:15 +02:00
<link rel=stylesheet type=text/css
2023-07-20 08:04:07 +02:00
href=https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css>
2023-07-16 11:38:15 +02:00
</head>
<body>
<header>
<div class=collapse id=navbarHeader>
<div class=container>
<div class=row>
2023-07-19 17:47:59 +02:00
<div class="col col-sm-8 col-md-7 py-4">
<h4>
About
2023-07-16 11:38:15 +02:00
</h4>
2023-07-20 08:04:07 +02:00
<p class="text-body-secondary ">
Add some information about the album below, the author, or any other background context. Make it a few sentences long so
folks can pick up some informative tidbits. Then, link them off to some social networking sites or contact information.
</p>
2023-07-16 11:38:15 +02:00
</div>
2023-07-20 08:04:07 +02:00
<div class="col col-sm-4 offset-md-1">
2023-07-19 17:47:59 +02:00
<h4>
Contact
</h4>
2023-07-16 11:38:15 +02:00
<ul class=list-unstyled>
2023-07-19 17:47:59 +02:00
<li>
<a class="text-white " href=#>
Follow on Twitter
</a>
</li>
<li>
<a class="text-white " href=#>
Like on Facebook
</a>
</li>
<li>
<a class="text-white " href=#>
Email me
</a>
</li>
2023-07-16 11:38:15 +02:00
</ul>
</div>
</div>
</div>
</div>
<nav class="navbar ">
<div class=container>
2023-07-19 17:47:59 +02:00
<a class=navbar-brand href=#>
Album
</a>
<button class="navbar-toggler collapsed" type=button
data-bs-toggle=collapse data-bs-target=#navbarHeader
aria-controls=navbarHeader aria-expanded=false
aria-label="Toggle navigation">
<span class=navbar-toggler-icon></span>
</button>
2023-07-16 11:38:15 +02:00
</div>
</nav>
</header>
<main>
2023-07-19 17:47:59 +02:00
<div class="container p-5">
<div class="row plg-5">
<div class="col col-md-8 col-lg-6 p-5">
<h1 class=fw-light></h1>
<p class="lead text-body-secondary ">
Something short and leading about the collection below—its contents, the creator, etc. Make it short and sweet, but not
too short so folks dont simply skip over it entirely.
</p>
<p>
<button class="btn btn-primary" type=button>
Main call to action
</button>
<button class="btn btn-secondary" type=button>
Secondary action
</button>
</p>
</div>
</div>
</div>
2023-07-16 11:38:15 +02:00
</main>
2023-07-19 17:47:59 +02:00
<footer class="text-body-secondary p-5 ">
2023-07-16 11:38:15 +02:00
<div class=container>
2023-07-19 17:47:59 +02:00
<p class="float-end mb-1">
<a href=#>
Back to top
</a>
</p>
<p class=mb-1>
Album example is © Bootstrap, but please download and customize it for yourself!
</p>
<p class=mb-0>
New to Bootstrap?
<a href="/">
Visit the homepage
</a>
or read our
<a href="/docs/5.3/getting-started/introduction/">
getting started guide
</a>
</p>
2023-07-16 11:38:15 +02:00
</div>
</footer>
</body>
2023-07-20 08:04:07 +02:00
<script
src=https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js></script>
2023-07-16 11:38:15 +02:00
</html>