optimisation de SEO
This commit is contained in:
@@ -1,5 +1,9 @@
|
|||||||
+++
|
+++
|
||||||
title = "IMEMA"
|
title = "IMEMA"
|
||||||
|
description = "Interface Modbus pour l'Enregistrement des Mesures d'Automates"
|
||||||
|
|
||||||
|
[extra]
|
||||||
|
keywords = ["IMEMA", "Modbus", "PLC", "Automate", "DB", "Hatmos", "hatmos"]
|
||||||
+++
|
+++
|
||||||
|
|
||||||
Interface Modbus pour l'Enregistrement des Mesures d'Automates
|
Interface Modbus pour l'Enregistrement des Mesures d'Automates
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
+++
|
+++
|
||||||
title = "Liste des Accomplissements"
|
title = "Liste des Accomplissements"
|
||||||
|
description = "Liste "
|
||||||
sort_by = "title"
|
sort_by = "title"
|
||||||
template = "accomplissements.html"
|
template = "accomplissements.html"
|
||||||
page_template = "page.html"
|
page_template = "page.html"
|
||||||
|
|||||||
@@ -1,4 +1,9 @@
|
|||||||
+++
|
+++
|
||||||
|
title = "CV Thomas LETELLIER"
|
||||||
|
description = "Curriculum Vitae de Thomas LETELLIER"
|
||||||
|
|
||||||
|
[extra]
|
||||||
|
keywords = ["CV", "Thomas LETELLIER", "letellier", "Hatmos", "hatmos"]
|
||||||
+++
|
+++
|
||||||
|
|
||||||
# Thomas LETELLIER
|
# Thomas LETELLIER
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
+++
|
+++
|
||||||
title = "Liste des Objectifs"
|
title = "Liste des Objectifs"
|
||||||
|
description = "Objectifs a atteindre de Hatmos"
|
||||||
sort_by = "title"
|
sort_by = "title"
|
||||||
template = "objectifs.html"
|
template = "objectifs.html"
|
||||||
page_template = "page.html"
|
page_template = "page.html"
|
||||||
|
|||||||
@@ -1,5 +1,9 @@
|
|||||||
+++
|
+++
|
||||||
title = "Porsche 944"
|
title = "Porsche 944"
|
||||||
|
description = "Objectifs de Voiture de reve"
|
||||||
|
|
||||||
|
[extra]
|
||||||
|
keywords = ["porsche 944", "porsche", "dream car", "hatmos", "Hatmos"]
|
||||||
+++
|
+++
|
||||||
|
|
||||||
{{ image(src="/porsche-944-2-7.jpeg" ,alt="Porsche 944 2.7L 1989", width="1200px") }}
|
{{ image(src="/porsche-944-2-7.jpeg" ,alt="Porsche 944 2.7L 1989", width="1200px") }}
|
||||||
|
|||||||
@@ -1,5 +1,9 @@
|
|||||||
+++
|
+++
|
||||||
title = "ConcordVC"
|
title = "ConcordVC"
|
||||||
|
description = "Presentation de Concord le service de voice chat rapide et ephemere"
|
||||||
|
|
||||||
|
[extra]
|
||||||
|
keywords = ["voice chat", "voice room", "hatmos", "Hatmos", "League of Legends"]
|
||||||
+++
|
+++
|
||||||
|
|
||||||
Concord Voice Chat est une application web qui a pour but de fournir un salon vocal sans friction, ephemere et freemium pour le plus grand nombre.
|
Concord Voice Chat est une application web qui a pour but de fournir un salon vocal sans friction, ephemere et freemium pour le plus grand nombre.
|
||||||
|
|||||||
@@ -1,14 +1,9 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
|
|
||||||
<html lang="fr">
|
<html lang="fr">
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
{% block head %} {% endblock head %}
|
||||||
<title>Hatmos</title>
|
|
||||||
<meta name="viewport" content="device-width, initial-scale=1">
|
|
||||||
<meta name="description" content="Site portefolio de mes objectifs de vie et mes accomplissements">
|
|
||||||
<link rel="stylesheet" href="{{get_url(path='style.css')}}">
|
|
||||||
<link rel="icon" type="image/png" href="{{get_url(path='favicon.png')}}">
|
|
||||||
</head>
|
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
<h1><a class="home" href="https://www.hatmos.xyz/">Le site de Hatmos</a></h1>
|
<h1><a class="home" href="https://www.hatmos.xyz/">Le site de Hatmos</a></h1>
|
||||||
|
|||||||
27
templates/partials/head.html
Normal file
27
templates/partials/head.html
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
{% extends "base.html" %}
|
||||||
|
|
||||||
|
{% block head %}
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>
|
||||||
|
{% if page %}
|
||||||
|
{{page.title}}
|
||||||
|
{% elif section %}
|
||||||
|
{{section.title}}
|
||||||
|
{% else %}
|
||||||
|
{{config.title}}
|
||||||
|
{% endif %}
|
||||||
|
</title>
|
||||||
|
<meta name="viewport" content="device-width, initial-scale=1.0">
|
||||||
|
{% if page %}
|
||||||
|
<meta name="description" content="{{page.description}}">
|
||||||
|
{% elif section %}
|
||||||
|
<meta name="description" content="{{section.description}}">
|
||||||
|
{% endif %}
|
||||||
|
{% if page and page.extra.keywords %}
|
||||||
|
<meta name="keywords" content="{{page.extra.keywords | join(sep=', ')}}">
|
||||||
|
{% endif %}
|
||||||
|
<link rel="stylesheet" href="{{get_url='style.css'}}">
|
||||||
|
<link rel="icon" type="image/png" href="{{get_url(path='favicon.png')}}">
|
||||||
|
</head>
|
||||||
|
{% endblock head %}
|
||||||
@@ -1,6 +1,8 @@
|
|||||||
# The URL the site will be built for
|
# The URL the site will be built for
|
||||||
base_url = "https://www.hatmos.xyz"
|
base_url = "https://www.hatmos.xyz"
|
||||||
|
|
||||||
|
title = "Hatmos"
|
||||||
|
|
||||||
# Whether to automatically compile all Sass files in the sass directory
|
# Whether to automatically compile all Sass files in the sass directory
|
||||||
compile_sass = true
|
compile_sass = true
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user