mirror of
https://github.com/mediacms-io/mediacms.git
synced 2024-11-22 16:23:35 +01:00
34 lines
1002 B
HTML
34 lines
1002 B
HTML
|
{% extends "base.html" %}
|
||
|
{% load static %}
|
||
|
|
||
|
{% block headtitle %}{% if user.name %}{{user.name}} - {% endif %}Playlists - {{PORTAL_NAME}}{% endblock headtitle %}
|
||
|
|
||
|
{% block headermeta %}
|
||
|
|
||
|
<meta property="og:title" content="{% if user.name %}{{user.name}} - {% endif %}Playlists - {{PORTAL_NAME}}">
|
||
|
<meta property="og:type" content="website">
|
||
|
<meta property="og:description" content="">
|
||
|
|
||
|
<meta name="twitter:card" content="summary">
|
||
|
|
||
|
{% endblock headermeta %}
|
||
|
|
||
|
{% block topimports %}
|
||
|
<link href="{% static "css/profile-playlists.css" %}" rel="preload" as="style">
|
||
|
<link href="{% static "css/profile-playlists.css" %}" rel="stylesheet">
|
||
|
{%endblock topimports %}
|
||
|
|
||
|
{% block innercontent %}
|
||
|
{% if user %}{% else %}
|
||
|
No such user
|
||
|
{% endif %}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
{% if user %}<div id="page-profile-playlists"></div>{% endif %}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block bottomimports %}
|
||
|
<script src="{% static "js/profile-playlists.js" %}"></script>
|
||
|
{% endblock bottomimports %}
|