fix: wrong property key for OG card

pull/156/head
Raphaël Vinot 2021-01-17 12:49:29 +01:00
parent 026e0b7269
commit fbd981d543
2 changed files with 10 additions and 10 deletions

View File

@ -6,18 +6,18 @@
{% block title %}Lookyloo{% endblock %}
{% block card %}
<meta name="og:title" content="Lookyloo" />
<meta name="og:type" content="website"/>
<meta property="og:title" content="Lookyloo" />
<meta property="og:type" content="website"/>
<meta
name="og:description"
property="og:description"
content="Lookyloo captures websites and let you investigate them."
/>
<meta
name="og:image"
property="og:image"
content="//{{public_domain}}{{ url_for('static', filename='favicon.ico') }}"
/>
<meta
name="og:url"
property="og:url"
content="//{{public_domain}}"
/>
{% endblock %}

View File

@ -6,18 +6,18 @@
{% block title %}Capture of {{root_url}}{% endblock %}
{% block card %}
<meta name="og:title" content="Lookyloo capture" />
<meta name="og:type" content="website"/>
<meta property="og:title" content="Lookyloo capture" />
<meta property="og:type" content="website"/>
<meta
name="og:description"
property="og:description"
content="URL captured: {{root_url}}"
/>
<meta
name="og:image"
property="og:image"
content="//{{public_domain}}{{ url_for('image', tree_uuid=tree_uuid) }}"
/>
<meta
name="og:url"
property="og:url"
content="//{{public_domain}}{{ url_for('tree', tree_uuid=tree_uuid) }}"
/>
{% endblock %}