mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-23 03:43:12 +00:00
Merge branch 'open_graph' into 'master'
Open graph See merge request federez/re2o!54
This commit is contained in:
commit
09157a6a0d
1 changed files with 14 additions and 5 deletions
|
@ -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
|
se veut agnostique au réseau considéré, de manière à être installable en
|
||||||
quelques clics.
|
quelques clics.
|
||||||
|
|
||||||
Copyright © 2017 Gabriel Détraz
|
|
||||||
Copyright © 2017 Goulven Kermarec
|
Copyright © 2017 Goulven Kermarec
|
||||||
Copyright © 2017 Augustin Lemesle
|
Copyright © 2017 Augustin Lemesle
|
||||||
|
|
||||||
|
@ -29,7 +28,17 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
|
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="fr">
|
<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 #}
|
{# Load CSS and JavaScript #}
|
||||||
{% bootstrap_css %}
|
{% bootstrap_css %}
|
||||||
<link href="/static/css/typeaheadjs.css" rel="stylesheet">
|
<link href="/static/css/typeaheadjs.css" rel="stylesheet">
|
||||||
|
|
Loading…
Reference in a new issue