seitime-frappe/frappe/templates/test/_test_base_breadcrumbs.html
2021-07-01 22:10:02 +05:30

20 lines
432 B
HTML

<!-- base template for testing -->
<html>
<head>
{%- block style %}
{% if colocated_css -%}
<style>{{ colocated_css }}</style>
{%- endif %}
{%- endblock -%}
</head>
<body>
{% include "templates/includes/breadcrumbs.html" %}
<h1>This is for testing</h1>
{% block content %}{% endblock %}
{%- block script %}
{% if colocated_js -%}
<script>{{ colocated_js }}</script>
{%- endif %}
{%- endblock %}
</body>
</html>