-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (81 loc) · 2.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Mars Data</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="../static/index_style.css">
</head>
<body>
<div class="container-fluid">
<div class="jumbotron text-center">
<span style='color:black'><h1>Mission to </span><span style='color:coral'>Mars</span></h1>
<p><a class="btn btn-primary btn-lg" href="/scrape" role="button">Scrape New Data!</a></p>
</div>
<div class='news'>
<div class='row'>
<div class='col-md-12'>
<h3><span style='color:coral'>Mars</span> News!</h3>
<h4>{{ mars.title }}</h4>
<p>{{ mars.news_p }}</p>
</div>
</div>
</div>
<div class='row'>
<div class='jpl_image'>
<div class='col-md-6'>
<h3><center>Featured <span style='color:coral'>Mars</span> Image!</center></h3>
<img src='{{ mars.featured_image }}' alt='Featured Image' width="600" height="400">
</div>
</div>
<div class='facts'>
<div class='col-md-6'>
<h3><center><span style='color:coral'>Mars</span> Facts!</center></h3>
<center>
{{ mars.facts|safe }}
</center>
</div>
</div>
</div>
<div class='hemispheres'>
<div class='row'>
<div class='col-md-12'>
<h3 class='hemi'><span style='color:coral'>Mars</span> Hemispheres!</h3>
</div>
<div class='col-md-6'>
<h4>
<center>
{{ mars.hemispheres[0]['title'] }}
<img src="{{ mars.hemispheres[0]['img_url'] }}" width="300" height="300">
</center>
</h4>
</div>
<div class='col-md-6'>
<h4>
<center>
{{ mars.hemispheres[1]['title'] }}
<img src="{{ mars.hemispheres[1]['img_url'] }}" width="300" height="300">
</center>
</h4>
</div>
<div class='col-md-6'>
<h4>
<center>
{{ mars.hemispheres[2]['title'] }}
<img src="{{ mars.hemispheres[2]['img_url'] }}" width="300" height="300">
</center>
</h4>
</div>
<div class='col-md-6'>
<h4>
<center>
{{ mars.hemispheres[3]['title'] }}
<img src="{{ mars.hemispheres[3]['img_url'] }}" width="300" height="300">
</center>
</h4>
</div>
</div>
</div>
</body>