-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
92 lines (78 loc) · 4.74 KB
/
about.html
File metadata and controls
92 lines (78 loc) · 4.74 KB
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
<!-- base.html (static-friendly) -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SHIFT</title>
<script src="https://code.jquery.com/jquery-3.7.1.min.js" crossorigin="anonymous"></script>
<!--Bootstrap CSS CDN File-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css">
<!--Common Styles-->
<div id="styles-placeholder"></div>
<!-- Page specific styles can go here -->
</head>
<body>
<!--Header-->
<div id="header-placeholder"></div>
<!--Navbar-->
<div id="navbar-placeholder"></div>
<!-- Main content will be inserted here -->
<main>
<style>
.content-container {
padding: 0 20px !important; /* Adjust the value as needed for desired padding */
max-width: 1200px !important; /* Optional: to restrict the width for better readability */
margin: 20px auto !important; /* Center the container */
}
</style>
<div class="content-container">
<!-- <section>
<h1>About <strong>SHIFT</strong></h1>
</section> -->
<section>
<h2>What is the Problem?</h2>
<p>Ireland's transition to a greener and more sustainable transportation system faces significant challenges, particularly in promoting cycling as an alternative to car-based travel. Despite its environmental, health, and economic benefits, cycling adoption remains low among families and "tentative" cyclists due to safety concerns related to road infrastructure. Furthermore, the lack of systematic post-completion evaluations of new cycling infrastructure and insufficient collaboration between planners and cyclists hinders progress in creating safer and more effective cycling environments.</p>
</section>
<section>
<h2>What is the Solution?</h2>
<ul>
<li><strong>Provide Objective Data on Perceived Safety:</strong> Combine physiological data from cyclists with environmental factors (e.g., traffic, road layout, weather) to offer actionable insights into road safety.</li>
<li><strong>Implement Post-Completion Evaluations:</strong> Introduce systematic evaluations of new cycle lanes to ensure they meet design objectives and function effectively.</li>
<li><strong>Facilitate Collaboration:</strong> Establish frameworks for transport planners and cyclists to co-design and evaluate infrastructure projects.</li>
<li><strong>Encourage Cycling Among Families and Tentative Cyclists:</strong> Enhance safety and accessibility to foster a cultural shift towards cycling as a primary mode of transportation.</li>
</ul>
<div style="text-align: center; margin: 20px 0;"> <!-- Adds space above and below -->
<div style="text-align: center;">
<video class="img-fluid" style="width: 900px; height: auto;" autoplay loop muted>
<source src="./static/videos/shift_flow.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
</section>
<section>
<h2>What is Our Role?</h2>
<p>At <strong>SHIFT</strong>, we lead this transformation by integrating cutting-edge research, engaging with communities, and collaborating with key stakeholders, including parents, advocacy groups, and local authorities. Our objectives include:</p>
<ul>
<li>Developing innovative tools for measuring and analyzing perceived safety.</li>
<li>Filling critical evaluation gaps for cycling infrastructure projects.</li>
<li>Bridging communication and collaboration gaps between planners and cyclists.</li>
<li>Promoting active travel through safe, well-designed, and inclusive cycling environments.</li>
</ul>
</section>
<section>
<h2>Join Us in Creating a Greener Future</h2>
<p>By integrating innovative technologies and fostering collaboration between cyclists and transport planners, <strong>SHIFT</strong> aims to create a future where cycling is safe, accessible, and enjoyable for everyone. We invite you to join us in promoting active travel and contributing to healthier, more sustainable communities throughout Ireland.</p>
<p><em>Together, we can make cycling a cornerstone of Ireland's green transition, improving quality of life now and for future generations.</em></p>
</section>
</div>
</main>
<!--Footer-->
<div id="footer-placeholder"></div>
<!-- JavaScript -->
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<script src="./static/js/main.js"></script>
</body>
</html>