-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplates.php
More file actions
62 lines (58 loc) · 2.98 KB
/
Copy pathtemplates.php
File metadata and controls
62 lines (58 loc) · 2.98 KB
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
<?php
const BY_SERVER = true;
include_once 'util/functions.php';
include_once 'util/variables.php';
startSession();
?>
<!DOCTYPE html>
<html lang="<?= $GLOBALS['lang'] ?>">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="Optimisez vos projets avec WorkshopRessource : découvrez nos outils exclusifs, incluant des décals et autres ressources, 100% Open-Source. Accédez à des tutoriels détaillés pour enrichir vos compétences. Élevez la qualité de vos projets grâce à des ressources exceptionnelles.">
<meta name="keywords" content="workshop, ressources, gratuit, tutoriels, gmod, zébra, decals, template, créateur, jeu, garry's mod, novalife, nova-life">
<meta name="author" content="Alexis Thierry-Bellefond">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@alexistb2904">
<meta name="twitter:title" content="WorkshopRessources - +100 Ressources pour vous">
<meta name="twitter:description"
content="Optimisez vos projets avec WorkshopRessource : découvrez nos outils exclusifs, incluant des décals et autres ressources, 100% Open-Source. Accédez à des tutoriels détaillés pour enrichir vos compétences. Élevez la qualité de vos projets grâce à des ressources exceptionnelles.">
<meta name="twitter:image" content="<?php echo ($GLOBALS['rootUrl']) ?>assets/images/logo.webp">
<!-- Balise de Langue -->
<meta http-equiv="Content-Language" content="fr">
<!-- Balise de Favicon (Logo) -->
<link rel="icon" href="<?php echo ($GLOBALS['rootUrl']) ?>assets/images/favicon.ico" type="image/x-icon">
<!-- Balise de CSS -->
<link rel="stylesheet" href="<?php echo ($GLOBALS['rootUrl']) ?>css/style.css">
<script src="https://kit.fontawesome.com/e1413d4c65.js" crossorigin="anonymous"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat&family=Roboto&display=swap" rel="stylesheet">
<title>WorkshopRessources - <?= lang('category_title_6') ?></title>
</head>
<body>
<header>
<?php include_once 'components/nav_bar.php' ?>
</header>
<main>
<section class="header-text">
<div>
<h1><?= lang('category_title_4') ?></h1>
<p><?= lang('template_page_description') ?></p>
</div>
</section>
<section class="game-card">
<a href="ressources/garrysmod/" class="card-game">
<img src="assets/images/gmod.png">
<h3>Garry's Mod</h3>
</a>
<a href="ressources/novalife/templates.php" class="card-game">
<img src="assets/images/novalife.jpg">
<h3>Nova Life</h3>
</a>
</section>
</main>
<?php include_once 'components/footer.php'; ?>
</body>
</html>