2020-12-16 11:48:37 +00:00
{% extends "base.html" %}
2024-10-04 10:17:40 +00:00
{% load i18n %}
2020-12-16 11:48:37 +00:00
{% block headtitle %}About - {{PORTAL_NAME}}{% endblock headtitle %}
{% block headermeta %}
2024-10-04 10:17:40 +00:00
{% load custom_filters %}
2020-12-16 11:48:37 +00:00
< meta property = "og:title" content = "About - {{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": "About",
"item": {
"@type": "AboutPage",
"@id": "{{FRONTEND_HOST}}/about"
}
}]
}
< / script >
{% endblock headermeta %}
{% block innercontent %}
2024-10-04 10:17:40 +00:00
{% get_current_language as LANGUAGE_CODE %}
2020-12-16 11:48:37 +00:00
< div class = "custom-page-wrapper" >
2024-10-04 10:17:40 +00:00
< h2 > {{ "About" | custom_translate:LANGUAGE_CODE}}< / h2 >
2020-12-16 11:48:37 +00:00
< hr / >
2024-10-04 10:17:40 +00:00
< p > < a href = "https://mediacms.io" > MediaCMS< / a > {{ "is a modern, fully featured open source video and media CMS. It is developed to meet the needs of modern web platforms for viewing and sharing media" | custom_translate:LANGUAGE_CODE}}.< / p >
2020-12-16 11:48:37 +00:00
< / div >
2024-10-04 10:17:40 +00:00
2020-12-16 11:48:37 +00:00
{% endblock %}