2024-01-13 15:45:49 +00:00

45 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en" data-theme="">
<head>
<meta charset="utf-8" />
<title>Mastodon embed timeline</title>
<meta name="author" content="i.j" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="keywords" content="mastodon, embed timeline" />
<meta name="description" content="Mastodon embed timeline" />
<link rel="stylesheet" href="mastodon-timeline.min.css" />
<style>
html {
height: 100%;
}
body {
display: flex;
height: 100%;
justify-content: center;
align-items: center;
background: lightslategray;
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
margin: 0;
}
.dummy-wrapper {
width: calc(100% - 1rem);
max-width: 26rem;
height: calc(100% - 3rem);
}
</style>
</head>
<body>
<div class="dummy-wrapper">
<div class="mt-container">
<div id="mt-body" class="mt-body" role="feed">
<div class="loading-spinner"></div>
</div>
</div>
</div>
<script src="mastodon-timeline.min.js"></script>
</body>
</html>