-
Notifications
You must be signed in to change notification settings - Fork 28
/
index.php
93 lines (89 loc) · 3.82 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<?php
session_start();
include 'includes/datas/languages.php';
?>
<html>
<!-- header -->
<head>
<title>GamePulse - Discover Exciting Games</title>
<!-- Include Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Bootstrap JS and Popper.js (for dropdowns) -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<!-- Include your custom stylesheet -->
<link href="assets/css/main.css" rel="stylesheet">
</head>
<body>
<?php
include 'includes/header/header.inc.php'; // Include header
?>
<!-- Hero Banner -->
<section class="hero-banner text-center py-5">
<div class="container" id="main-container">
<h1 class="display-4"><?php echo $titre1[$langue]; ?></h1>
<p class="lead"><?php echo $titre2_home[$langue]; ?></p>
<a href="game_list.php" class="btn btn-primary btn-lg"><?php echo $btn_game_list[$langue]; ?></a>
</div>
</section>
<!-- Introduction -->
<section class="container mt-5">
<div class="row">
<div class="col-md-8 offset-md-2 text-center">
<h2><?php echo $about_home[$langue]; ?></h2>
<p class="lead"><?php echo $desc1[$langue]; ?></p>
<p><?php echo $desc2[$langue]; ?></p>
<p><?php echo $desc3[$langue]; ?></p>
</div>
</div>
</section>
<!-- Popular Games Right Now -->
<section class="popular-games">
<div class="container">
<h2 class="section-title"><?php echo $popular_games[$langue]; ?></h2>
<div class="horizontal-tilted-game-art">
<div class="tilted-game-art">
<a target="_blank" href="https://www.rockstargames.com/reddeadredemption2/restricted-content/agegate/form?redirect=https%3A%2F%2Fwww.rockstargames.com%2Freddeadredemption2%2F&options=&locale=en_us">
<img src="assets/images/RDR2cover.jpg" alt="RDR2 Game Art">
</a>
</div>
<div class="tilted-game-art">
<a target="_blank" href="https://store.steampowered.com/app/730/CounterStrike_Global_Offensive/">
<img src="assets/images/CSGOcover.jpg" alt="CSGO Game Art">
</a>
</div>
<div class="tilted-game-art">
<a target="_blank" href="https://www.minecraft.net/en-us">
<img src="assets/images/MinecraftCover.png" alt="Minecraft Game Art">
</a>
</div>
</div>
</div>
</section>
<!-- Popular Games Right Now -->
<section class="Upcoming-games">
<div class="container">
<h2 class="section-title"><?php echo $upcoming_games[$langue]; ?></h2>
<div class="horizontal-tilted-game-art">
<div class="tilted-game-art">
<a target="_blank" href="https://www.ea.com/games/skate?isLocalized=true">
<img src="assets/images/Skate4Cover.jpg" alt="Skate 4 art">
</a>
</div>
<div class="tilted-game-art">
<a target="_blank" href="https://www.paydaythegame.com/payday3/">
<img src="assets/images/Payday3Cover.jpg" alt="Payday 3 art">
</a>
</div>
</div>
</div>
</section>
<!-- Include Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"></script>
<!-- Include the footer -->
<?php include 'includes/footer/footer.inc.php'; ?>
</body>
</html>