Changeset View
Changeset View
Standalone View
Standalone View
subscriptions/templates/checkout/checkout_base.html
| {% load pipeline %} | {% load pipeline %} | ||||
| {% load static %} | {% load static %} | ||||
| {% load common_extras %} | {% load common_extras %} | ||||
| <!DOCTYPE html> | <!DOCTYPE html> | ||||
| <html lang="en"> | <html lang="en"> | ||||
| <head> | <head> | ||||
| <meta charset="utf-8"> | <meta charset="utf-8"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | <meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||||
| <link rel="shortcut icon" href="{% static 'common/images/favicon/favicon.ico' %}"> | <link rel="shortcut icon" href="{% static 'common/images/favicon/favicon.ico' %}"> | ||||
| <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> | <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> | ||||
| <title>{% block title_prepend %}{% endblock title_prepend %}Blender | <title>{% block title_prepend %}{% endblock title_prepend %}Blender | ||||
| Cloud Subscription{% block title_append %}{% endblock title_append %}</title> | Cloud Subscription{% block title_append %}{% endblock title_append %}</title> | ||||
| <meta name="google-site-verification" content="r-8DuUEYwMyb14SRVj0I4mSUSEPmdRRMrT-zMSbFkas"> | <meta name="google-site-verification" content="r-8DuUEYwMyb14SRVj0I4mSUSEPmdRRMrT-zMSbFkas"> | ||||
| {% block meta %} | {% block meta %} | ||||
| {% include 'common/components/meta.html' %} | {% include 'common/components/meta.html' %} | ||||
| {% endblock meta %} | {% endblock meta %} | ||||
| {% stylesheet 'studio' %} | {% stylesheet 'studio' %} | ||||
| </head> | </head> | ||||
| <body class="{% block bodyclasses %}{% endblock bodyclasses %}" | <body class="{% block bodyclasses %}{% endblock bodyclasses %}" | ||||
| data-authenticated="{% if request.user.is_authenticated %}true{% else%}false{% endif %}"> | data-authenticated="{% if request.user.is_authenticated %}true{% else%}false{% endif %}"> | ||||
| <nav class="navbar"> | <nav class="navbar"> | ||||
| <div class="navdrawer-offset"> | <div class="navdrawer-offset"> | ||||
| <div class="container-xl flex-nowrap"> | <div class="container-xl flex-nowrap"> | ||||
| <a href="/" class="navbar-brand"> | <a href="/" class="navbar-brand"> | ||||
| <img src="{% static 'common/images/blender_cloud_logo.svg' %}" alt="Blender Cloud"> | <img src="{% static 'common/images/blender_cloud_logo.svg' %}" alt="Blender Cloud"> | ||||
| </a> | </a> | ||||
| </div> | </div> | ||||
| </div> | </div> | ||||
| </nav> | </nav> | ||||
| {% block content %}{% endblock content %} | {% block content %}{% endblock content %} | ||||
| {{ user_dict|json_script:"current-user" }} | {{ user_dict|json_script:"current-user" }} | ||||
| {% javascript 'vendor' %} | {% javascript 'vendor' %} | ||||
| {% block scripts %}{% endblock scripts %} | {% block scripts %}{% endblock scripts %} | ||||
| </body> | </body> | ||||
| </html> | </html> | ||||