-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (105 loc) · 4.63 KB
/
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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="Connie Hyman">
<meta name="generator" content="Jekyll v4.0.1">
<title>This Happened!</title>
<link rel="canonical" href="https://getbootstrap.com/docs/4.5/examples/blog/">
<!-- Bootstrap-4 CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<!-- Optional Javascript -->
<!-- jQuery, then Popper.js, then Bootstrap.js -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<!-- JS Project Tags -->
<script type="text/javascript" src="src/post.js"> </script>
<script type="text/javascript" src="src/index.js"></script>
<style>
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}
</style>
<!-- Custom styles for this template -->
<link href="https://fonts.googleapis.com/css?family=Playfair+Display:700,900" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="index.css" rel="stylesheet">
</head>
<body>
<div class="container">
<header class="post-header py-3">
<div class="row flex-nowrap justify-content-between align-items-center">
<div class="col-4 pt-1">
<a class="text-muted" href="#"></a>
</div>
<div class="col-4 text-center">
<a class="post-header-logo text-dark" href="#">This Happened!</a>
</div>
<div class="col-4 d-flex justify-content-end align-items-center">
<a class="text-muted" href="#" aria-label="Search">
</a>
<a class="btn btn-sm btn-outline-none" href="#"></a>
</div>
</div>
</header>
<div class="nav-scroller py-1 mb-2">
</div>
<div class="jumbotron p-4 p-md-5 text-white rounded bg-dark">
<div class="col-md-6 px-0">
<h1 class="display-4 font-italic">This Happened!</h1>
<form id='create-post-form'>
<div class="form-group">
<label for="subjects">Choose A Topic</label>
<select class="form-control" id="subjects">
</select>
</div>
<div class="form-group">
<label for="title">Title</label>
<input type="text" class="form-control" id='input-title' aria-describedby="title">
</div>
<div class="form-group">
<label for="description">What Happened?</label>
<textarea class="form-control" id='input-description' rows="4"></textarea>
</div>
<button type="submit" class="btn btn-primary" id='create-button'>Submit</button>
</form>
</div>
</div>
<!-- inside end of container -->
</div>
<main role="main" class="container" ></>
<div class="row" >
<div class="col-md-8 post-main" >
<h3 class="pb-4 mb-4 font-italic border-bottom">
What's Happening?
</h3>
<div class="post-post" >
</div><!-- /.post-post -->
</div>
<div class="row mb-2" id="post-container">
<!-- inside end of card div -->
</div>
</div><!-- /.row -->
</main><!-- /.container -->
<footer class="post-footer">
<!-- <p>Blog template built for <a href="https://getbootstrap.com/">Bootstrap</a> by <a href="https://twitter.com/mdo">@mdo</a>.</p> -->
<p>
<a href="#">Back to top</a>
</p>
</footer>
</body>
</html>