2024-07-11 21:13:17 +02:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<link rel="stylesheet" href="styles.css"/>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
2024-07-11 23:53:45 +02:00
|
|
|
<a id="home" href="#" onclick="goToHome()">Home</a>
|
|
|
|
|
|
|
|
<div id="profile">
|
|
|
|
<h1 id="profile-name"></h1>
|
|
|
|
<p id="profile-description"></p>
|
|
|
|
</div>
|
|
|
|
|
2024-07-11 22:19:51 +02:00
|
|
|
<!-- posts are added by JavaScript so container starts empty -->
|
|
|
|
<div id="post-container"></div>
|
2024-07-11 21:13:17 +02:00
|
|
|
|
2024-07-11 22:19:51 +02:00
|
|
|
<!-- loader displays an animation before adding the next batch of posts -->
|
2024-07-11 21:13:17 +02:00
|
|
|
<div id="loader">
|
2024-07-11 22:19:51 +02:00
|
|
|
<div class="skeleton-post"></div>
|
2024-07-11 21:13:17 +02:00
|
|
|
</div>
|
|
|
|
|
2024-07-11 22:19:51 +02:00
|
|
|
<!-- post actions shows the post count and post total (we probably do not need this) -->
|
|
|
|
<div id="post-actions">
|
2024-07-11 21:13:17 +02:00
|
|
|
<span>Showing
|
2024-07-11 22:19:51 +02:00
|
|
|
<span id="post-count"></span> of
|
|
|
|
<span id="post-total"></span> cards
|
2024-07-11 21:13:17 +02:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script src="main.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|