-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard.html
81 lines (72 loc) · 2.18 KB
/
dashboard.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html>
<head>
<title>Blogs</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
<style>
body,h1,h2,h3,h4,h5 {font-family: "Raleway", sans-serif}
.header-btn {
position: absolute;
top: 10px;
right: 10px;
}
.profile-btn {
position: absolute;
top: 10px;
left: 10px;
}
.logout-btn {
position: absolute;
top: 50px;
left: 10px;
}
</style>
</head>
<body class="w3-light-grey">
<!-- w3-content defines a container for fixed size centered content,
and is wrapped around the whole page content, except for the footer in this example -->
<div class="w3-content" style="max-width:1400px; position: relative;">
<!-- Header -->
<header class="w3-container w3-center w3-padding-32">
<h1><b>MY BLOG</b></h1>
<p>Welcome to the blog</p>
<a href="/user/make_post" class="w3-button w3-green w3-padding-large w3-margin-top header-btn">Make a Post</a>
<a href="/user/profile" class="w3-button w3-green w3-padding-large w3-margin-top profile-btn">View Profile</a>
<a href="/user/signout" class="w3-button w3-red w3-padding-large w3-margin-top logout-btn">Log Out</a>
</header>
<!-- Grid -->
<div class="w3-row">
<!-- Blog entries -->
<div class="w3-col l8 s12">
{% for post in posts %}
<div class="w3-card-4 w3-margin w3-white">
<div class="w3-container">
<h3><b>{{ post.title }}</b></h3>
<h5>{{ post.description }}, <span class="w3-opacity">{{ post.created_at }}</span></h5>
</div>
<div class="w3-container">
<p>{{ post.content }}</p>
</div>
</div>
<hr>
{% endfor %}
</div>
<!-- Introduction menu -->
<div class="w3-col l4">
<!-- About Card -->
<div class="w3-card w3-margin w3-margin-top">
<div class="w3-container w3-white">
<h4><b>Ali Ege</b></h4>
<p>Just me, myself and I, exploring the universe of uknownment. I want to share my world with you.</p>
</div>
</div><hr>
</div>
<!-- END GRID -->
</div><br>
<!-- END w3-content -->
</div>
</body>
</html>