33 lines
		
	
	
		
			748 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			748 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <html>
 | |
| <head>
 | |
|     <link rel="stylesheet" href="styles.css"/>
 | |
| </head>
 | |
| <body>
 | |
| 
 | |
| <a id="home" href="#" onclick="goToHome()">Home</a>
 | |
| 
 | |
| <div id="profile">
 | |
|     <h1 id="profile-name"></h1>
 | |
|     <p id="profile-description"></p>
 | |
| </div>
 | |
| 
 | |
| <!-- posts are added by JavaScript so container starts empty -->
 | |
| <div id="post-container"></div>
 | |
| 
 | |
| <!-- loader displays an animation before adding the next batch of posts -->
 | |
| <div id="loader">
 | |
|     <div class="skeleton-post"></div>
 | |
| </div>
 | |
| 
 | |
| <!-- post actions shows the post count and post total (we probably do not need this) -->
 | |
| <div id="post-actions">
 | |
|     <span>Showing
 | |
|         <span id="post-count"></span> of
 | |
|         <span id="post-total"></span> cards
 | |
|     </span>
 | |
| </div>
 | |
| 
 | |
| <script src="main.js"></script>
 | |
| </body>
 | |
| </html>
 |