29 lines
806 B
HTML
29 lines
806 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Mastodon embed timeline</title>
|
|
<link rel="stylesheet" href="../dist/mastodon-timeline.min.css" />
|
|
<div class="dummy-wrapper-timeline">
|
|
<!-- Mastodon Timeline -->
|
|
<div id="mt-container" class="mt-container">
|
|
<div class="mt-body" role="feed">
|
|
<div class="mt-loading-spinner"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- JavaScript -->
|
|
<script src="../dist/mastodon-timeline.umd.js"></script>
|
|
<script>
|
|
const myTimeline = new MastodonTimeline.Init({
|
|
instanceUrl: "https://wb.kunjk.top",
|
|
timelineType: "profile",
|
|
userId: "AhVoZyMjM1sRAccpEW",
|
|
profileName: "@aaa",
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|