diff --git a/AKPlan/templates/AKPlan/plan_base.html b/AKPlan/templates/AKPlan/plan_base.html index 50372f20b780419345998fa3f46984800c510f59..846e79d2bc389d1cddf0a4e376645f8b0a0855df 100644 --- a/AKPlan/templates/AKPlan/plan_base.html +++ b/AKPlan/templates/AKPlan/plan_base.html @@ -4,6 +4,11 @@ {% load i18n %} {% load static %} +{% block meta %} + <meta name="twitter:card" content="summary" /> + <meta name="twitter:title" content="{{ event.name }} - {% trans "Plan" %}" /> +{% endblock %} + {% block imports %} {% get_current_language as LANGUAGE_CODE %} diff --git a/AKSubmission/templates/AKSubmission/ak_detail.html b/AKSubmission/templates/AKSubmission/ak_detail.html index 483e66e38bcc0bc118fc36d70566b8a0566f452a..bef54a41168d2f53204aa5ba9da7db63047b899f 100644 --- a/AKSubmission/templates/AKSubmission/ak_detail.html +++ b/AKSubmission/templates/AKSubmission/ak_detail.html @@ -10,6 +10,12 @@ {% block title %}{% trans "AKs" %}: {{ ak.event.name }} - {% trans "AK" %}: {{ ak.name }}{% endblock %} +{% block meta %} + <meta name="twitter:card" content="summary" /> + <meta name="twitter:title" content="{{ak.name}} ({{ak.event.name }})" /> + <meta name="twitter:description" content="{{ ak.description }}" /> +{% endblock %} + {% block breadcrumbs %} {% include "AKSubmission/submission_breadcrumbs.html" %} <li class="breadcrumb-item"><a diff --git a/AKSubmission/templates/AKSubmission/ak_overview.html b/AKSubmission/templates/AKSubmission/ak_overview.html index 0e1d11582bfb1f5ef7263cdda7849cec6cfcfcf7..01b8ab84316c43a439688a1bd044cbec2eda590b 100644 --- a/AKSubmission/templates/AKSubmission/ak_overview.html +++ b/AKSubmission/templates/AKSubmission/ak_overview.html @@ -7,6 +7,11 @@ {% block title %}{% trans "AKs" %}: {{ event.name }} - {% trans "AKs" %}{% endblock %} +{% block meta %} + <meta name="twitter:card" content="summary" /> + <meta name="twitter:title" content="{{ event.name }} - {% trans "AKs" %}" /> +{% endblock %} + {% block imports %} <style> /* Prevent wrapping of buttons in AK table */ diff --git a/AKSubmission/templates/AKSubmission/submission_overview.html b/AKSubmission/templates/AKSubmission/submission_overview.html index 6265d4c34b867d99e8b4bac455334f1b02f85ec2..e7994b69352314de63860059fdc2f655afc81df6 100644 --- a/AKSubmission/templates/AKSubmission/submission_overview.html +++ b/AKSubmission/templates/AKSubmission/submission_overview.html @@ -6,6 +6,11 @@ {% block title %}{% trans "AKs" %}: {{ event.name }} - {% trans "AK Submission" %}{% endblock %} +{% block meta %} + <meta name="twitter:card" content="summary" /> + <meta name="twitter:title" content="{{ event.name }} - {% trans "AK Submission" %}" /> +{% endblock %} + {% block imports %} <style> /* Prevent wrapping of buttons in AK table */