-
Notifications
You must be signed in to change notification settings - Fork 0
/
stories.html
92 lines (84 loc) · 3.95 KB
/
stories.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
<!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" media="screen">
</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 id="active-page" 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="hero-image">
<img src="Assets/Images/refugee_stories/hero_image.png" />
<div class="text-on-image">
<div class="snippet">
<h2 class="img-text-headline">Refugee Stories</h2>
</div>
</div>
</div>
<!-- Recent Stories section -->
<section class="refugee-stories-main">
<div class="stories">
<div class="single-story">
<img class="home-img" src="./Assets/Images/refugee_stories/Sudan Image.png">
<div class="title-story">
<h2 class="title">South Sudanese grow rice, and community ties, in Uganda</h2>
<p>By Josie Le Blond | April 18, 2019 | Oliji Settlement, Uganda</p>
<hr>
<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.</p>
<a href="./articles/story1.html">
<button class="home-rm-btn">Read More</button>
</a>
</div>
</div>
<div class="single-story">
<img class="home-img" src="./Assets/Images/refugee_stories/Sudan Baby Image.png">
<div class="title-story">
<h2 class="title">More than one million children have fled escalating violence in South Sudan</h2>
<p>By Josie Le Blond | April 18, 2019 | Oliji Settlement, Uganda</p>
<hr>
<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.</p>
<a href="./articles/story5.html">
<button class="home-rm-btn">Read More</button>
</a>
</div>
</div>
<div class="single-story">
<img class="home-img" src="./Assets/Images/refugee_stories/Venezuela Image.png">
<div class="title-story">
<h2 class="title">Venezuelans risk life and limb to seek help in Colombia</h2>
<p>By Josie Le Blond | April 18, 2019 | Oliji Settlement, Uganda</p>
<hr>
<p>Refugees and migrants brave floods, bandits and treacherous footpaths in a desperate search for food, medicine and
safety in Cúcuta.</p>
<a href="./articles/story6.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>