-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
121 lines (110 loc) · 5.5 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
119
120
121
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Refugee Stories</title>
<link rel="stylesheet" type="text/css" href="./css/index.css" />
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:100,200,300,400" media="screen">
<script src="./Components/Carousel/Carousel.js" async></script>
<script src="./index.js" async></script>
</head>
<body>
<!-- Logo and NavBar -->
<div class="top-bar">
<div class="top-left" onclick="window.location='./index.html'">
<img class="logo" src="./Assets/Images/Logo.png" />
<p class="logo-text">Refugee Stories</p>
</div>
<nav class="navigation">
<a href="./stories.html">Refugee Stories</a>
<a href="./signin.html">Submit Story</a>
<a href="./about.html">About Us</a>
<a href="./contribute.html">Contribute</a>
<a href="./signin.html">Sign In</a>
</nav>
</div>
<!-- Image Carousel with Featured Story Snippets, Read More links -->
<div class="carousel">
<img class="image" src="./Assets/Images/Carousel/Image00.jpg" />
<img class="image" style="display: none" src="./Assets/Images/Carousel/Image07.jpg" />
<img class="image" style="display: none" src="./Assets/Images/Carousel/Image08.jpg" />
<!-- <img class="image" style="display: none" src="./Assets/Images/Carousel/Image07.jpg" />
<img class="image" style="display: none" src="./Assets/Images/Carousel/Image10.jpg" />
<img class="image" style="display: none" src="./Assets/Images/Carousel/Image05.jpg" />
<img class="image" style="display: none" src="./Assets/Images/Carousel/Image08.jpg" /> -->
<div class="img-text">
<div class="snippet">
<h2 class="img-text-headline">South Sudanese Grow Rice, and Community Ties, in Uganda</h2>
<p class="img-text-p">"Rice is a food crop and a cash crop," explains Minoru Yoshino, chief advisor of the PRiDe project, which has trained more than 50,000 farmers since it launched in 2011. "[Growing it] improves both food security and livelihoods for refugees and Ugandans."</p>
<a href="./articles/story1.html">
<div class="img-readmore-btn">Read More</div>
</a>
</div>
<div class="snippet" style="display: none">
<h2 class="img-text-headline">Sorghum Farm at Kalobeyei Settlement in Kenya</h2>
<p class="img-text-p">A woman from the Turkana host community (left) and her friend, a refugee from South Sudan, stand among the crops in the 180-hectare sorghum farm at Kalobeyei Integrated Settlement.</p>
<a href="./articles/story7.html">
<div class="img-readmore-btn">Read More</div>
</a>
</div>
<div class="snippet" style="display: none">
<h2 class="img-text-headline">Syrian refugee teaches Arabic via Skype from Beirut</h2>
<p class="img-text-p">Shadi El Aiek looks over the rooftops of Beirut from his balcony in the Geitawi district. He is one of a growing number of displaced people tutoring language students in Arabic through the NaTakallam website.</p>
<a href="./articles/story8.html">
<div class="img-readmore-btn">Read More</div>
</a>
</div>
<div class="dots">
<div class="circle" style="background-color:#D14704; height: 9px; width: 9px;"></div>
<div class="circle"></div>
<div class="circle"></div>
</div>
</div>
<!-- This section will be to show which slide is active with highlighted circles/dots -->
<div class="buttons">
<div class="left-button">❬</div>
<div class="right-button">❭</div>
</div>
</div>
<!-- Recent Stories section -->
<section class="home-stories">
<p class="recent-title">Recent Stories</p>
<div class="recent-stories">
<div class="single-story">
<img class="home-img" src="./Assets/Images/Desktop Landing Page Carousel/Yemen Image.png">
<div class="title-story">
<span class="title">Yemenis' battle to survive deepens as conflict grinds on</span>
<p>By Bathoul Ahmed <span class="ver-line">|</span> February 26, 2019 <span class="ver-line">|</span> Aden, Yemen</p>
<a href="./articles/story3.html">
<button class="home-rm-btn">Read More</button>
</a>
</div>
</div>
<div class="single-story">
<img class="home-img" src="./Assets/Images/Desktop Landing Page Carousel/Syria Image.png">
<div class="title-story">
<span class="title">'I stopped by your house in Syria today, but no one was home'</span>
<p>By Chris Reardon <span class="ver-line">|</span> April 11, 2019 <span class="ver-line">|</span> Syria</p>
<a href="./articles/story2.html">
<button class="home-rm-btn">Read More</button>
</a>
</div>
</div>
<div class="single-story">
<img class="home-img" src="./Assets/Images/Desktop Landing Page Carousel/Mozambique Image.png">
<div class="title-story">
<span class="title">UNHCR aid for Cyclone Idai survivors arrives in Mozambique</span>
<p>By Peter Holmes a Court <span class="ver-line">|</span> March 27, 2019 <span class="ver-line">|</span> Dondo, Mozambiquen</p>
<a href="./articles/story4.html">
<button class="home-rm-btn">Read More</button>
</a>
</div>
</div>
</div>
</section>
<footer>
<p>Logo is an empathy symbol from https://empathysymbol.com</p>
<p>Stories and pictures from https://www.unhcr.org</p>
</footer>
</body>
</html>