Upload files to "templates"

This commit is contained in:
2024-11-28 00:55:02 -05:00
parent 9f90266716
commit cc9de49dba
13 changed files with 246 additions and 0 deletions

28
templates/index.html Normal file
View File

@ -0,0 +1,28 @@
{% extends "base.html" %}
{% block content %}
<!-- Centered container -->
<div class="center-container">
<!-- Render Full ASCII Art -->
<pre class="ascii-art no-background">{{ full_ascii_art }}</pre>
<!-- Render Infinitei ASCII Art -->
<pre class="ascii-art no-background">{{ infinitei }}</pre>
<!-- Add image below Infinitei -->
<img src="{{ url_for('static', filename='threat_hunter.jpeg') }}" alt="Threat Hunter Image" class="ascii-image">
<h1>Welcome to Your Cybersecurity Tool</h1>
<!-- Render README Description -->
<p>{{ readme_description }}</p>
<!-- Links displayed side by side -->
<div class="link-container">
{% for link in links %}
<a class="link-button" href="{{ link.url }}" target="_blank">{{ link.name }}</a>
{% endfor %}
</div>
</div>
{% endblock %}