mirror of
https://github.com/Crocmagnon/charasheet.git
synced 2024-11-04 22:03:56 +01:00
Add opengraph
This commit is contained in:
parent
c5c4bf4e7d
commit
35205a9524
2 changed files with 23 additions and 1 deletions
|
@ -5,8 +5,10 @@
|
|||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>{% block title %}Character Sheet{% endblock %}</title>
|
||||
<title>{% block title %}CharaSheet - Gérez votre personnage de Chroniques Oubliées{% endblock %}</title>
|
||||
{% include "common/icons.html" %}
|
||||
{% include "common/opengraph.html" %}
|
||||
|
||||
<link rel="stylesheet" href="{% static "vendor/bootstrap-5.2.2/bootstrap.min.css" %}">
|
||||
<link rel="stylesheet" href="{% static "vendor/fontawesome-6.2.0/css/fontawesome.min.css" %}">
|
||||
<link rel="stylesheet" href="{% static "vendor/fontawesome-6.2.0/css/brands.min.css" %}">
|
||||
|
|
20
src/common/templates/common/opengraph.html
Normal file
20
src/common/templates/common/opengraph.html
Normal file
|
@ -0,0 +1,20 @@
|
|||
{% load static %}
|
||||
<!-- HTML Meta Tags -->
|
||||
<meta name="description" content="Créez et gérez votre personnage du jeu Chroniques Oubliées. Partez à l'aventure avec vos compagnons et votre meneur de jeu !">
|
||||
|
||||
<!-- Facebook Meta Tags -->
|
||||
<meta property="og:url" content="https://charasheet.augendre.info">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:title" content="CharaSheet - Gérez votre personnage de Chroniques Oubliées">
|
||||
<meta property="og:description" content="Créez et gérez votre personnage du jeu Chroniques Oubliées. Partez à l'aventure avec vos compagnons et votre meneur de jeu !">
|
||||
<meta property="og:image" content="https://charasheet.augendre.info{% static "icons/android-chrome-256x256.png" %}">
|
||||
|
||||
<!-- Twitter Meta Tags -->
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta property="twitter:domain" content="opengraph.dev">
|
||||
<meta property="twitter:url" content="https://charasheet.augendre.info">
|
||||
<meta name="twitter:title" content="CharaSheet - Gérez votre personnage de Chroniques Oubliées">
|
||||
<meta name="twitter:description" content="Créez et gérez votre personnage du jeu Chroniques Oubliées. Partez à l'aventure avec vos compagnons et votre meneur de jeu !">
|
||||
<meta name="twitter:image" content="https://charasheet.augendre.info{% static "icons/android-chrome-256x256.png" %}">
|
||||
|
||||
<!-- Meta Tags Generated via https://opengraph.dev -->
|
Loading…
Reference in a new issue