-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.html
45 lines (41 loc) · 1.05 KB
/
base.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
<!DOCTYPE html>
<html>
<head>
<title>blog</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
</head>
<style type="text/css">
h5{
margin-top: 0px;
text-align: right;
margin-right: 5px;
}
a{
text-decoration: None;
color: black;
}
ul{
list-style-type: None;
}
.addnew{
padding-left: 30px;
}
</style>
<body>
<div class="container">
<div class = "heading">
<h1><center>my blog</center></h1>
</div>
<div class="row">
<div class="col-md-3 addnew"><a href="/blog/Newpage"><h3>add a new post</h3></a></div>
<div class="col-md-5"></div>
<div class="col-md-2"><a href="/blog/{{ login }}"><h3 class= "login">{{ login }}</h3></a></div>
<div class="col-md-2"><a href="/blog/signup"><h3 class="right">{{ signup }}</h3></a></div>
</div >
<div>
{% block content %}
{% endblock %}
</div>
</div>
</body>
</html>