wip adding php include

This commit is contained in:
Hugo LAMY
2026-03-17 14:09:41 +01:00
parent cd97001cc0
commit 704483f6e6
64 changed files with 1351 additions and 881 deletions

33
index.php Normal file
View File

@@ -0,0 +1,33 @@
<!doctype html>
<html lang="fr" dir="ltr">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1"
/>
<!-- create "fake" favicon : https://stackoverflow.com/questions/1321878/how-to-prevent-favicon-ico-requests -->
<link rel="icon" href="data:;base64,iVBORw0KGgo=" />
<title>hugulumu.fr</title>
<meta name="description" content="site web de hugo lamy, developpeur" />
<base href="./src/" />
<link href="./styles/global_style.css" type="text/css" rel="stylesheet" />
<link href="./styles/mouses.css" type="text/css" rel="stylesheet" />
<link href="./styles/banners.css" type="text/css" rel="stylesheet" />
<link href="./styles/language.css" type="text/css" rel="stylesheet" />
<link href="./styles/elements/title.css" type="text/css" rel="stylesheet" />
<link href="./styles/elements/hero.css" type="text/css" rel="stylesheet" />
<link
href="./styles/elements/projects.css"
type="text/css"
rel="stylesheet"
/>
<link href="./styles/elements/cv.css" type="text/css" rel="stylesheet" />
<link href="./styles/elements/infos.css" type="text/css" rel="stylesheet" />
</head>
<body>
<?php include './src/body.php'; ?>
</body>
</html>