-
-
Notifications
You must be signed in to change notification settings - Fork 139
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ui : add gsoc page containing relevant links
Fixes: #2882
- Loading branch information
1 parent
0e9cf90
commit 14e4e64
Showing
3 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
{% extends "base.html" %} | ||
{% block content %} | ||
{% include "includes/sidenav.html" %} | ||
<style> | ||
.container { | ||
margin-top: 20px; | ||
height: calc(100vh - 90px); | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
.link-text { | ||
font-weight: bold; | ||
transition: color 0.3s ease; | ||
margin-left: 20px; | ||
} | ||
.link-text:hover { | ||
color: red; /* Assuming 'text-danger' is red; adjust as needed */ | ||
} | ||
</style> | ||
<div class="container"> | ||
<h1 class="text-[3rem] m-4">GSOC Links:</h1> | ||
<a href="https://owasp.org/www-community/initiatives/gsoc/gsoc2024ideas" | ||
target="_blank"> | ||
<div class="link-text"> | ||
GSOC Project Ideas 2024 <i class="fa-solid fa-link"></i> | ||
</div> | ||
</a> | ||
<a href="https://github.com/orgs/OWASP-BLT/projects?query=is%3Aopen" | ||
target="_blank"> | ||
<div class="link-text"> | ||
Checkout Project Ideas for OWASP BLT <i class="fa-solid fa-link"></i> | ||
</div> | ||
</a> | ||
<h1 class="text-[3rem] m-4">Past GSOC Events:</h1> | ||
<a href="https://summerofcode.withgoogle.com/archive/2023/organizations/owasp-foundation" | ||
target="_blank"> | ||
<div class="link-text"> | ||
2023 GSOC Archive <i class="fa-solid fa-link"></i> | ||
</div> | ||
</a> | ||
<a href="https://summerofcode.withgoogle.com/archive/2022/organizations/owasp-foundation" | ||
target="_blank"> | ||
<div class="link-text"> | ||
2022 GSOC Archive <i class="fa-solid fa-link"></i> | ||
</div> | ||
</a> | ||
<a href="https://summerofcode.withgoogle.com/archive/2021/organizations/owasp-foundation" | ||
target="_blank"> | ||
<div class="link-text"> | ||
2021 GSOC Archive <i class="fa-solid fa-link"></i> | ||
</div> | ||
</a> | ||
<a href="https://summerofcode.withgoogle.com/archive/2020/organizations/owasp-foundation" | ||
target="_blank"> | ||
<div class="link-text"> | ||
2020 GSOC Archive <i class="fa-solid fa-link"></i> | ||
</div> | ||
</a> | ||
</div> | ||
{% endblock content %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters