Update header snippet: add favicon, manifest, meta generator and meta robots
This commit is contained in:
parent
3f9f557e8b
commit
df8b08ee6d
3 changed files with 29 additions and 9 deletions
1
public/favicon.svg
Normal file
1
public/favicon.svg
Normal file
|
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 100 100"><rect width="100" height="100" rx="50" fill="#00968f"></rect></svg>
|
||||
|
After Width: | Height: | Size: 152 B |
9
public/manifest.webmanifest
Normal file
9
public/manifest.webmanifest
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"short_name": "PdC",
|
||||
"name": "Pochet du Courval",
|
||||
"description": "",
|
||||
"background_color": "#F0F0F0",
|
||||
"theme_color": "#00968F",
|
||||
"display": "minimal-ui",
|
||||
"start_url": "/"
|
||||
}
|
||||
|
|
@ -1,10 +1,20 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Document</title>
|
||||
<script type="module" src="http://localhost:5173/@vite/client" defer></script>
|
||||
<script type="module" src="http://localhost:5173/src/main.js" defer></script>
|
||||
</head>
|
||||
<body>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0">
|
||||
|
||||
<title>Nom du service</title>
|
||||
<meta name="description" content="">
|
||||
|
||||
<meta name="generator" content="Kirby (<?= Kirby::version() ?>)">
|
||||
<meta name="robots" content="noindex nofollow">
|
||||
|
||||
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
|
||||
<link rel="manifest" href="/manifest.webmanifest">
|
||||
|
||||
<script type="module" src="http://localhost:5173/@vite/client" defer></script>
|
||||
<script type="module" src="http://localhost:5173/src/main.js" defer></script>
|
||||
</head>
|
||||
<body>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue