mirror of
https://github.com/mediacms-io/mediacms.git
synced 2024-11-22 08:13:33 +01:00
48 lines
1.1 KiB
HTML
48 lines
1.1 KiB
HTML
|
{% extends "base.html" %}
|
||
|
{% load static %}
|
||
|
|
||
|
{% block headtitle %}Recent uploads - {{PORTAL_NAME}}{% endblock headtitle %}
|
||
|
|
||
|
{% block headermeta %}
|
||
|
|
||
|
<meta property="og:title" content="Recent uploads - {{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": "Recent uploads",
|
||
|
"item": {
|
||
|
"@type": "WebPage",
|
||
|
"@id": "{{FRONTEND_HOST}}/latest"
|
||
|
}
|
||
|
}]
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
{% endblock headermeta %}
|
||
|
|
||
|
{% block content %}
|
||
|
{% if user %}<div id="page-latest"></div>{% endif %}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block bottomimports %}
|
||
|
<script src="{% static "js/latest.js" %}"></script>
|
||
|
{% endblock bottomimports %}
|