You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SAE_2A_FA-Reseau_ALICA/php/templates/offres.html

89 lines
2.4 KiB

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Alica - Offres</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
1 year ago
<style>
.offre-container {
margin-bottom: 5%;
}
.offre-img {
max-width: 100%;
}
#titrePrincipal {
padding-bottom: 10px;
border-bottom: 1px solid black;
margin-bottom: 30px;
}
.custom-button {
background-color: #00DBFF;
border-color: #00DBFF;
color: #fff;
}
</style>
</head>
<body>
<header>
{% include "menu.html" %}
</header>
<div class="container mt-4">
<h1 id="titrePrincipal">Offres d'emploi</h1>
{% for offre in offers %}
1 year ago
<div class="offre-container">
<div class="row">
1 year ago
<!-- Première ligne -->
<div class="col-12 col-md-3">
1 year ago
<img src="{{ offre.image }}" class="offre-img">
</div>
1 year ago
<div class="col-12 col-md-9">
1 year ago
<h3>{{ offre.nom }}</h3>
<p>{{ offre.offreur }}</p>
1 year ago
</div>
</div>
<div class="row">
<div class="col-12">
1 year ago
<p class="text-left">{{ offre.description }}</p>
1 year ago
</div>
</div>
<!-- Quatrième ligne (Localisation) -->
<div class="row">
<div class="col-1">
<img src="assets/location.png" class="img-fluid" title="ville">
</div>
<div class="col-11">
1 year ago
<p>{{ offre.ville }}</p>
</div>
</div>
1 year ago
<div class="row">
<div class="col-12">
<button type="button" class="btn btn-outline-primary btn-sm mb-2 custom-button"
1 year ago
onclick="window.location.href = 'index.php?action=displayOffer&id={{offre.id}}';">En savoir plus ></button>
1 year ago
</div>
</div>
</div>
{% endfor %}
{% if pages is defined %}
{% for page in pages %}
<a href="index.php?action=displayOffers&page={{page}}">{{page}}</a>
{% endfor %}
{% endif %}
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>