mirror of
https://github.com/mediacms-io/mediacms.git
synced 2024-11-22 16:23:35 +01:00
46 lines
1.1 KiB
HTML
46 lines
1.1 KiB
HTML
{% extends "base.html" %}
|
|
{% load static %}
|
|
|
|
{% block headtitle %}Members - {{PORTAL_NAME}}{% endblock headtitle %}
|
|
|
|
{% block headermeta %}
|
|
|
|
<meta property="og:title" content="Members - {{PORTAL_NAME}}">
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:description" content="">
|
|
|
|
<meta name="twitter:card" content="summary">
|
|
|
|
<script type="application/ld+json">
|
|
{
|
|
"@context": "https://schema.org",
|
|
"@type": "BreadcrumbList",
|
|
"itemListElement": [{
|
|
"@type": "ListItem",
|
|
"position": 1,
|
|
"name": "{{PORTAL_NAME}}",
|
|
"item": {
|
|
"@type": "WebPage",
|
|
"@id": "{{FRONTEND_HOST}}"
|
|
}
|
|
},
|
|
{
|
|
"@type": "ListItem",
|
|
"position": 2,
|
|
"name": "Members",
|
|
"item": {
|
|
"@type": "WebPage",
|
|
"@id": "{{FRONTEND_HOST}}/members"
|
|
}
|
|
}]
|
|
}
|
|
</script>
|
|
|
|
{% endblock headermeta %}
|
|
|
|
{% block content %}<div id="page-members"></div>{% endblock %}
|
|
|
|
{% block bottomimports %}
|
|
<script src="{% static "js/members.js" %}"></script>
|
|
{% endblock bottomimports %}
|