-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
45 lines (36 loc) · 2.12 KB
/
home.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
<!DOCTYPE html>
<html>
<head>
<title>Jovian Careers</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- <title>Bootstrap demo</title> -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<style>
#banner{
object-fit:cover;
height: 320px;
width: 100%;
}
</style>
</head>
<body>
<h1 class="text-center mt-4 mb-4" >{{companyName}} Careers</h1>
<img class="img-fluid mb-4" id="banner" src="https://images.unsplash.com/photo-1504805572947-34fad45aed93?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="Do Something Great" height=300px width=>
<div class="text-center container" style="max-width:0 auto">
<div class="mb-4">
<h2 class="text-center mt-2 mb-4">About</h2>
<p class="lead">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.g</p>
</div>
</div>
<div class="container text-center">
<h2>Opening Positions</h2>
{% for job in jobs %}
{% include 'jobs.html'%} <!-- This will act like a code snippet -->
{% endfor %}
<button class="btn btn-primary btn-sm" >Contact Us</button>
</div>
<p class="text-center mt-4 mb-2" >Copyright 2024, Yaswanth</p>
</div>
</body>
</html>