mirror of https://github.com/CIRCL/lookyloo
fix: wrong property key for OG card
parent
026e0b7269
commit
fbd981d543
|
@ -6,18 +6,18 @@
|
||||||
{% block title %}Lookyloo{% endblock %}
|
{% block title %}Lookyloo{% endblock %}
|
||||||
|
|
||||||
{% block card %}
|
{% block card %}
|
||||||
<meta name="og:title" content="Lookyloo" />
|
<meta property="og:title" content="Lookyloo" />
|
||||||
<meta name="og:type" content="website"/>
|
<meta property="og:type" content="website"/>
|
||||||
<meta
|
<meta
|
||||||
name="og:description"
|
property="og:description"
|
||||||
content="Lookyloo captures websites and let you investigate them."
|
content="Lookyloo captures websites and let you investigate them."
|
||||||
/>
|
/>
|
||||||
<meta
|
<meta
|
||||||
name="og:image"
|
property="og:image"
|
||||||
content="//{{public_domain}}{{ url_for('static', filename='favicon.ico') }}"
|
content="//{{public_domain}}{{ url_for('static', filename='favicon.ico') }}"
|
||||||
/>
|
/>
|
||||||
<meta
|
<meta
|
||||||
name="og:url"
|
property="og:url"
|
||||||
content="//{{public_domain}}"
|
content="//{{public_domain}}"
|
||||||
/>
|
/>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
|
@ -6,18 +6,18 @@
|
||||||
{% block title %}Capture of {{root_url}}{% endblock %}
|
{% block title %}Capture of {{root_url}}{% endblock %}
|
||||||
|
|
||||||
{% block card %}
|
{% block card %}
|
||||||
<meta name="og:title" content="Lookyloo capture" />
|
<meta property="og:title" content="Lookyloo capture" />
|
||||||
<meta name="og:type" content="website"/>
|
<meta property="og:type" content="website"/>
|
||||||
<meta
|
<meta
|
||||||
name="og:description"
|
property="og:description"
|
||||||
content="URL captured: {{root_url}}"
|
content="URL captured: {{root_url}}"
|
||||||
/>
|
/>
|
||||||
<meta
|
<meta
|
||||||
name="og:image"
|
property="og:image"
|
||||||
content="//{{public_domain}}{{ url_for('image', tree_uuid=tree_uuid) }}"
|
content="//{{public_domain}}{{ url_for('image', tree_uuid=tree_uuid) }}"
|
||||||
/>
|
/>
|
||||||
<meta
|
<meta
|
||||||
name="og:url"
|
property="og:url"
|
||||||
content="//{{public_domain}}{{ url_for('tree', tree_uuid=tree_uuid) }}"
|
content="//{{public_domain}}{{ url_for('tree', tree_uuid=tree_uuid) }}"
|
||||||
/>
|
/>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
Loading…
Reference in New Issue