Upload files to "templates"
This commit is contained in:
28
templates/index.html
Normal file
28
templates/index.html
Normal 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 %}
|
Reference in New Issue
Block a user