Add image to opengraph and twitter cards

This commit is contained in:
Gregory Trolliet 2019-09-22 09:12:06 +02:00
parent 7a3dedbfc1
commit 18fd729044
4 changed files with 26 additions and 18 deletions

View File

@ -22,6 +22,7 @@ disqusShortname = "yourdiscussshortname"
info = "Ingénieur en informatique, formateur & moniteur" info = "Ingénieur en informatique, formateur & moniteur"
description = "Site personnel de Gregory Trolliet" description = "Site personnel de Gregory Trolliet"
keywords = "blog,développeur,personnel" keywords = "blog,développeur,personnel"
images = ["images/avatar_grey.png"]
avatarurl = "images/avatar_grey.png" avatarurl = "images/avatar_grey.png"
footercontent = "" footercontent = ""
posts = "Articles" posts = "Articles"

View File

@ -1,12 +1,12 @@
+++ ---
date = "2017-01-08" date: "2017-01-08"
title = "Theme Demo" title: "Theme Demo"
description = "The post demonstrates features of the coder theme." description: "The post demonstrates features of the coder theme."
images = ["/images/N90.jpg"] images: ["/images/N90.jpg"]
math = "true" math: "true"
series = ["Theme", "Hugo"] series: ["Theme", "Hugo"]
draft = true draft: true
+++ ---
## Style Demo ## Style Demo

View File

@ -1,12 +1,12 @@
+++ ---
date = "2017-01-08" date: "2017-01-08"
title = "Theme Demo" title: "Theme Demo"
description = "The post demonstrates features of the coder theme." description: "The post demonstrates features of the coder theme."
images = ["/images/N90.jpg"] images: ["/images/N90.jpg"]
math = "true" math: "true"
series = ["Theme", "Hugo"] series: ["Theme", "Hugo"]
draft = true draft: true
+++ ---
## Style Demo ## Style Demo

View File

@ -24,3 +24,10 @@ body {
.fab { .fab {
font-family: "Font Awesome 5 Brands"; font-family: "Font Awesome 5 Brands";
} }
.categories {
display: inline-block;
}
.tags {
display: inline-block;
}