-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (33 loc) · 832 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Embloggen</title>
<script async src="js/index.js"></script>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<main>
<header>
<h1>Embloggen</h1>
<a href="new-post.html" id="new-post-link">📝</a>
</header>
<hr>
<section id="post-list"></section>
<hr>
<footer>
<a href="about.html" id="about-link">About</a>
<p id="logged-in-as">Logged in as <span id="logged-in-user" class="post-author"></span></p>
<a href="login.html" id="login-link">Log in</a>
</footer>
</main>
</body>
<template id="post-template">
<a class="post" href="#">
<p class="post-title"></p>
<p class="post-synopsis"></p>
<p class="post-by">Posted by <span class="post-author"></span></p>
<p class="post-date"></p>
</a>
</template>
</html>