8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-11-22 19:33:11 +00:00

Merge branch 'open_graph' into 'master'

Open graph

See merge request federez/re2o!54
This commit is contained in:
moamoak 2017-12-23 17:30:04 +01:00
commit 09157a6a0d

View file

@ -3,7 +3,6 @@ Re2o est un logiciel d'administration développé initiallement au rezometz. Il
se veut agnostique au réseau considéré, de manière à être installable en
quelques clics.
Copyright © 2017 Gabriel Détraz
Copyright © 2017 Goulven Kermarec
Copyright © 2017 Augustin Lemesle
@ -29,7 +28,17 @@ with this program; if not, write to the Free Software Foundation, Inc.,
<!DOCTYPE html>
<html lang="fr">
<head>
<head prefix="og: http://ogp.me/ns#">
<meta property="og:title" content="Re2o" />
<meta property="og:type" content="website" />
{% if request.is_secure %}
<meta property="og:url" content="https://{{request.get_host}}" />
<meta property="og:image" content="https://{{request.get_host}}/static/logo/re2o.png"/>
{%else%}
<meta property="og:url" content="http://{{request.get_host}"/>
<meta property="og:image" content="http://{{request.get_host}}/static/logo/re2o.png"/>
{%endif%}
<meta property="og:description" content="Site de gestion de réseau supporté par FedeRez." />
{# Load CSS and JavaScript #}
{% bootstrap_css %}
<link href="/static/css/typeaheadjs.css" rel="stylesheet">