forked from saeedesmaili/iranian-businesses-data-reports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (64 loc) · 2.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Iranian Business Report</title>
<link href="https://unpkg.com/@webpixels/dist/themes/minimal.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div>
<div class="pt-24">
<div class="container max-w-screen-xl">
<div class="row align-items-center justify-content-center">
<div class="col-lg-10 text-lg-center">
<!-- Title -->
<h1 class="ls-tight font-bolder display-3 mb-7">
Iranian Business Report
</h1>
<!-- Text -->
<p class="lead mb-12 px-lg-32">
An archive of data reports published by Iranian businesses.
</p>
<!-- Buttons -->
<div class="mx-n2">
<a href="https://github.com/MahdiMajidzadeh/iranian-businesses-data-reports" class="btn btn-lg btn-primary mx-2 px-lg-8 btn-sm">
see github repo
</a>
<a href="https://github.com/MahdiMajidzadeh/iranian-businesses-data-reports/issues/new" class="btn btn-lg btn-neutral mx-2 px-lg-8 btn-sm">
add new report
</a>
</div>
</div>
</div>
<div class="row justify-content-center mt-10">
<div class="col-lg-11 text-lg-center">
<div class="row">
<div id="tagList"></div>
<div id="titleList" class="title-list row mt-5"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer class="py-20">
<div class="container">
<div class="row justify-content-center text-center">
<div class="col-xl-9">
<p class="text-sm text-muted opacity-8">
This project is maintained and developed by <a href="https://www.linkedin.com/in/mahdimajidzadeh/">Mahdi Majidzadeh</a>.
</div>
</div>
</div>
</footer>
<script src="app.js"></script>
</body>
</html>