add: backend gaming
All checks were successful
Deploy via SSH on push / deploy-via-ssh (push) Successful in 22s

This commit is contained in:
2025-12-01 12:46:08 +00:00
parent 2bb7c9f799
commit 36633ebd2b
4 changed files with 64 additions and 59 deletions

View File

@@ -1,9 +1,30 @@
{% extends "base.html" %}
{% block content %}
<h1>Mes Projets</h1>
<ul>
<li>Projet 1 Devenir un tigre</li>
<li>Projet 2 Un script dautomatisation pour acheter des monsters</li>
<li>Projet 3 Trouver un job</li>
</ul>
<div class="container my-5">
<h1 class="mb-4 text-center">My Projects</h1>
{% for project in projects %}
<div class="row mb-4 justify-content-center">
<div class="col-md-10">
<a href="{{ project.link }}" class="text-decoration-none">
<div class="p-4 rounded-4 text-light shadow hover-scale transparent-box d-flex flex-column flex-md-row align-items-center">
<!-- Project Image -->
<div class="project-img-wrapper text-center mb-3 mb-md-0 me-md-4">
<img src="{{ url_for('static', filename='img/' ~ project.image) }}"
alt="{{ project.title }}" class="img-fluid rounded shadow project-img" style="max-width: 200px;">
</div>
<!-- Project Text -->
<div class="project-text">
<h4>{{ project.title }}</h4>
<p>{{ project.description }}</p>
</div>
</div>
</a>
</div>
</div>
{% endfor %}
</div>
{% endblock %}