30 lines
1.2 KiB
PHP
30 lines
1.2 KiB
PHP
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="fr">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title data-url="<?= $site->url() ?>">DATA Architectes</title>
|
||
|
|
<link rel="stylesheet" href="/assets/style.css">
|
||
|
|
<link rel="stylesheet" href="https://unpkg.com/swiper@6/swiper-bundle.min.css">
|
||
|
|
<link rel="icon" type="image/png" href="<?= $site->favicon()->toFile()->url() ?>" />
|
||
|
|
|
||
|
|
<meta description="<?php
|
||
|
|
if($page->intro()->isNotEmpty()) {
|
||
|
|
echo $page->intro();
|
||
|
|
} else {
|
||
|
|
echo $site->description();
|
||
|
|
}
|
||
|
|
?>">
|
||
|
|
|
||
|
|
<meta property='og:title' content='Data architectes' />
|
||
|
|
<meta property='og:type' content='website' />
|
||
|
|
<meta property='og:url' content='<?= $site->url() ?>' />
|
||
|
|
<meta property='og:image' content='<?= $site->Logoimg()->toFile()->url() ?>' />
|
||
|
|
<meta property='og:description' content='<?= $site->description() ?>' />
|
||
|
|
|
||
|
|
<meta name='twitter:title' content='Data architectes' />
|
||
|
|
<meta name='twitter:description' content='<?= $site->description() ?>' />
|
||
|
|
<meta name='twitter:card' content='summary_large_image' />
|
||
|
|
<meta name='twitter:image' content='<?= $site->Logoimg()->toFile()->url() ?>'>
|
||
|
|
</head>
|
||
|
|
<body>
|