|
1 | 1 | <!--page wrapper-->
|
2 | 2 | <div class="container">
|
3 |
| - <!--navbar--> |
4 |
| - <nav class="navbar navbar-expand-lg navbar-light bg-light"> |
5 |
| - <a class="navbar-brand" href="#">The Blog Review</a> |
6 |
| - <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" |
7 |
| - aria-expanded="false" aria-label="Toggle navigation"> |
8 |
| - <span class="navbar-toggler-icon"></span> |
9 |
| - </button> |
10 |
| - <div class="collapse navbar-collapse" id="navbarSupportedContent"> |
11 |
| - <ul class="navbar-nav mr-auto"> |
12 |
| - |
13 |
| - <!--Modal to add a new blog--> |
14 |
| - <li class="nav-item"> |
15 |
| - <button class="btn btn-outline-warning" data-toggle="modal" data-target=".bd-example-modal-lg">Add Blog</button> |
16 |
| - <div class="modal fade bd-example-modal-lg" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true"> |
17 |
| - <div class="modal-dialog modal-lg"> |
18 |
| - <div class="modal-content addOne"> |
19 |
| - <form> |
20 |
| - <div class="form-group row"> |
21 |
| - <label for="inputEmail3" class="col-sm-2 col-form-label">Blog Title</label> |
22 |
| - <div class="col-sm-10"> |
23 |
| - <input type="text" class="form-control" id="inputEmail3" placeholder="Title"> |
24 |
| - </div> |
25 |
| - </div> |
26 |
| - <div class="form-group row"> |
27 |
| - <label for="inputPassword3" class="col-sm-2 col-form-label">Website</label> |
28 |
| - <div class="col-sm-10"> |
29 |
| - <input type="text" class="form-control" id="inputPassword3" placeholder="http://example.com"> |
30 |
| - </div> |
31 |
| - </div> |
32 |
| - <div class="form-group row"> |
33 |
| - <label for="inputPassword3" class="col-sm-2 col-form-label">Description</label> |
34 |
| - <div class="col-sm-10"> |
35 |
| - <input type="text" class="form-control" id="inputPassword3"> |
36 |
| - </div> |
37 |
| - </div> |
38 |
| - <div class="form-group row"> |
39 |
| - <label for="inputPassword3" class="col-sm-2 col-form-label">Rating</label> |
40 |
| - <div class="col-sm-10"> |
41 |
| - <input type="text" class="form-control" id="inputPassword3"> |
42 |
| - </div> |
43 |
| - </div> |
44 |
| - <div class="form-group row"> |
45 |
| - <div class="col-sm-10"> |
46 |
| - <button type="submit" class="btn btn-outline-danger">Add</button> |
47 |
| - </div> |
48 |
| - </div> |
49 |
| - </form> |
50 |
| - </div> |
51 |
| - </div> |
52 |
| - </div> |
53 |
| - </li> |
54 |
| - </ul> |
55 |
| - <form class="form-inline my-2 my-lg-0"> |
56 |
| - <input class="form-control mr-sm-2" type="text" placeholder="Search for a blog" aria-label="Search"> |
57 |
| - <button class="btn btn-outline-primary my-2 my-sm-0" type="submit">Search</button> |
58 |
| - </form> |
59 |
| - </div> |
60 |
| - </nav> |
| 3 | + |
| 4 | +{{> /navbar/navbar}} |
61 | 5 | <!--page header-->
|
62 | 6 | <div class="row">
|
63 | 7 | <div class="col header">
|
|
0 commit comments