-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathblogs.html
33 lines (33 loc) · 1.16 KB
/
blogs.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
<html>
<head>
<title>Blog</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="bootstrap-3.3.7-dist/css/bootstrap.css">
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
<script src="bootstrap-3.3.7-dist/js/bootstrap.js" charset="utf-8"></script>
<script src="js/blogs.js" charset="utf-8"></script>
<style>
body {
margin-top: 40px;
}
#accordion {
margin-top: 40px;
}
</style>
</head>
<body>
<div class="profile container-fluid">
<div class="col-md-3 col-md-offset-9 col-sm-3 col-sm-offset-9 col-xs-7 col-xs-offset-5">
<a href="blog.html" class="btn btn-sm btn-info">Write a blog</a>
<button id="logout" class="btn btn-sm btn-warning">Logout</button>
</div>
<h1 class="text-center text-primary">
Blogs
</h1>
<div class="row">
<div class="panel-group col-md-6 col-md-offset-3" id="accordion" role="tablist" aria-multiselectable="true">
</div>
</div>
</div>
</body>
</html>