Skip to content

Commit fcf2ee2

Browse files
committed
feat: update home template to include links for project details
1 parent 7114d03 commit fcf2ee2

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

website/templates/home.html

+16-4
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,10 @@ <h2 class="text-3xl font-bold">Our Components</h2>
109109
<div class="bg-white rounded-xl shadow-md p-6 flex flex-col">
110110
<div class="flex items-center gap-3 mb-4">
111111
<i class="fas fa-shield-alt text-2xl text-[#e74c3c]"></i>
112-
<h4 class="font-bold text-lg">Django Core</h4>
112+
<h4 class="font-bold text-lg">
113+
<a href="{% url 'repo_detail' 'blt' %}"
114+
class="hover:text-[#e74c3c] transition-colors">Django Core</a>
115+
</h4>
113116
</div>
114117
<p class="text-gray-600 text-sm mb-4 flex-grow">The main engine powering OWASP BLT's system API and Slack Bot.</p>
115118
<div class="flex flex-col gap-2">
@@ -133,7 +136,10 @@ <h4 class="font-bold text-lg">Django Core</h4>
133136
<div class="bg-white rounded-xl shadow-md p-6 flex flex-col">
134137
<div class="flex items-center gap-3 mb-4">
135138
<i class="fas fa-mobile-alt text-2xl text-[#e74c3c]"></i>
136-
<h4 class="font-bold text-lg">Flutter iOS App</h4>
139+
<h4 class="font-bold text-lg">
140+
<a href="{% url 'repo_detail' 'blt-flutter' %}"
141+
class="hover:text-[#e74c3c] transition-colors">Flutter iOS App</a>
142+
</h4>
137143
</div>
138144
<p class="text-gray-600 text-sm mb-4 flex-grow">Mobile application for on-the-go bug reporting and management.</p>
139145
<div class="flex flex-col gap-2">
@@ -157,7 +163,10 @@ <h4 class="font-bold text-lg">Flutter iOS App</h4>
157163
<div class="bg-white rounded-xl shadow-md p-6 flex flex-col">
158164
<div class="flex items-center gap-3 mb-4">
159165
<i class="fas fa-puzzle-piece text-2xl text-[#e74c3c]"></i>
160-
<h4 class="font-bold text-lg">Chrome Extension</h4>
166+
<h4 class="font-bold text-lg">
167+
<a href="{% url 'repo_detail' 'blt-extension' %}"
168+
class="hover:text-[#e74c3c] transition-colors">Chrome Extension</a>
169+
</h4>
161170
</div>
162171
<p class="text-gray-600 text-sm mb-4 flex-grow">Browser extension for quick bug reporting and screenshots.</p>
163172
<div class="flex flex-col gap-2">
@@ -181,7 +190,10 @@ <h4 class="font-bold text-lg">Chrome Extension</h4>
181190
<div class="bg-white rounded-xl shadow-md p-6 flex flex-col">
182191
<div class="flex items-center gap-3 mb-4">
183192
<i class="fas fa-bolt text-2xl text-[#e74c3c]"></i>
184-
<h4 class="font-bold text-lg">GitHub Action</h4>
193+
<h4 class="font-bold text-lg">
194+
<a href="{% url 'repo_detail' 'blt-action' %}"
195+
class="hover:text-[#e74c3c] transition-colors">GitHub Action</a>
196+
</h4>
185197
</div>
186198
<p class="text-gray-600 text-sm mb-4 flex-grow">GitHub Action for automated security checks and reporting.</p>
187199
<div class="flex flex-col gap-2">

0 commit comments

Comments
 (0)