-
-
Notifications
You must be signed in to change notification settings - Fork 147
Expand file tree
/
Copy pathauthor_template.html
More file actions
20 lines (20 loc) · 695 Bytes
/
author_template.html
File metadata and controls
20 lines (20 loc) · 695 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><!-- AUTHOR_NAME --></title>
<link rel="stylesheet" href="../assets/css/style.css">
</head>
<body>
<h1 id="author-name"><!-- AUTHOR_NAME --></h1>
<div id="sort-buttons">
<button id="toggle-format">Toggle MD/HTML</button>
<button id="sort-by-date">Sort by Date</button>
<button id="sort-by-likes">Sort by Likes</button>
</div>
<div id="essays-container"></div>
<script type="application/json" id="essaysData"></script>
<script src="../assets/js/populate-essays.js"></script>
</body>
</html>