-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathauthors.html
39 lines (31 loc) · 1.08 KB
/
authors.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Authors - We Live in a Society</title>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" href="scss/style.css">
<script src="assets/js/navbar.js"></script>
<script src="assets/js/author.js"></script>
</head>
<body>
<nav-bar current-active="authors"></nav-bar>
<div class="row p-2 g-2">
<div class="col-md-6 col-lg-3">
<author-card author="antriksh"></author-card>
</div>
<div class="col-md-6 col-lg-3">
<author-card author="joe"></author-card>
</div>
<div class="col-md-6 col-lg-3">
<author-card author="lulu"></author-card>
</div>
<div class="col-md-6 col-lg-3">
<author-card author="johnny"></author-card>
</div>
</div>
<script src="node_modules/bootstrap/dist/js/bootstrap.js"></script>
</body>
</html>
<!-- Lots of unused space in widescreen -->