HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: //home/arjun/projects/buyercall_forms/buyercall/buyercall/templates/layouts/mobile_base.jinja2
{% import 'macros/layout/meta_tags.jinja2' as meta_tags %}
{% import 'macros/layout/assets_mobile.jinja2' as assets with context %}

<!doctype html>
<html lang="">
<head>
  <title>{% block title %}{% endblock %}</title>

  {{ meta_tags.render(csrf_token()) }}

  {{ assets.render() }}
  {{ assets.polyfills() }}
  {% block refresh %} {% endblock %}

  <!-- Modernizr (browser feature detection library) -->
  <script src="/static/js/vendor/modernizr-2.8.3.min.js"></script>
</head>
<body{{ ' data-locale="' + current_user.locale + '"' if current_user.is_authenticated }} class="" style="background-color: #fff !important">
    <div class="container">
        {% block header %}{% endblock %}
        {% block body %}{% endblock %}
        {% block footer %}{% endblock %}
    </div>
<!-- Jquery plugins and Custom JS code -->

{{ javascript_tag('mobile_js') | safe }}

<!-- Load and execute javascript code used only in this page -->
{% block scripts %}
{% endblock %}
</body>
</html>