commit 6f8b378fa7bd725f8c6d5769fc95fca6e4563eda parent 219dd806d89abf1c60dce5a5e45f1377ea359a02 Author: Hugo Soucy <hugo.soucy@savoirfairelinux.com> Date: Wed, 21 Jun 2017 16:15:27 -0400 Add the missing metas in the head Diffstat:
M | templates/mustache/partials/head.mustache | | | 46 | ++++++++++++++++++++++++++++++---------------- |
1 file changed, 30 insertions(+), 16 deletions(-)
diff --git a/templates/mustache/partials/head.mustache b/templates/mustache/partials/head.mustache @@ -1,23 +1,37 @@ <!DOCTYPE html> <html lang="{{ SITE_LANGUAGE }}"> - <head> - <meta charset="utf-8" /> - <meta http-equiv="X-UA-Compatible" content="IE=edge" /> - <meta name="viewport" content="width=device-width, initial-scale=1" /> + <head> + <meta charset="utf-8" /> + <meta http-equiv="X-UA-Compatible" content="IE=edge" /> + <meta name="viewport" content="width=device-width, initial-scale=1" /> - <title>{{ page_title }} — {{ SITE_DOMAINNAME }}</title> + <title>{{ page_title }} — {{ SITE_DOMAINNAME }}</title> - <link rel="stylesheet" href="{{ BASE_URL }}/css/styles.css" /> - <link href="{{ BASE_URL }}/feed.atom.xml" type="application/atom+xml" rel="alternate" title="Feed Atom" /> + <link rel="stylesheet" href="{{ BASE_URL }}/css/styles.css" /> + <link href="{{ BASE_URL }}/feed.atom.xml" rel="alternate" title="Feed de tous les contenus" type="application/atom+xml" /> - <meta name="author" content="{{ SITE_AUTHOR }}" /> - <meta name="generator" content="{{ SITE_GENERATOR }}" /> + <link rel="webmention" href="https://webmention.herokuapp.com/api/webmention" /> - {{# description_loc }} - <meta name="description" content="{{ description_loc }}" /> - {{/ description_loc }} + <link rel="me" href="http://shr.soucy.cc/" /> + <link rel="me" href="https://bandcamp.com/hs0ucy" /> + <link rel="me" href="https://framasphere.org/u/hs0ucy" /> + <link rel="me" href="http://twitter.com/hs0ucy" /> + <link rel="me" href="https://github.com/hs0ucy" /> + <link rel="me" href="sms:+15819966481" /> + <link href="http://assets.soucy.cc/images/hugosoucy/favicon/hs-autoportrait-2010-nb-favion-32x32.png" rel="icon" type="image/png" /> + <!-- <link href="$permalink$" hreflang="{{ SITE_LANGUAGE }}" rel="canonical" /> --> - {{# keywords_loc }} - <meta name="keywords" content="{{ keywords_loc }}" /> - {{/ keywords_loc }} - </head> + <meta name="robots" content="index, follow" /> + <meta name="author" content="{{ SITE_AUTHOR }}" /> + <meta name="generator" content="{{ SITE_GENERATOR }}" /> + + {{# description_loc }} + <meta name="description" content="{{ description_loc }}" /> + {{/ description_loc }} + + {{# keywords_loc }} + <meta name="keywords" content="{{ keywords_loc }}" /> + {{/ keywords_loc }} + + <meta name="google-site-verification" content="-JraS76m4WZOftgNjizPIzRPC0MkCNNfxmPV4MGkJsc" /> + </head>