mirror of
https://github.com/bigskysoftware/htmx.git
synced 2025-09-27 04:50:43 +00:00
26 lines
747 B
HTML
26 lines
747 B
HTML
{% extends "htmx-theme/templates/base.html" %}
|
|
|
|
{% block title %}
|
|
{% set html_title = "</> htmx ~ Examples ~ " ~ page.title %}
|
|
{% endblock title %}
|
|
|
|
{% block description %}
|
|
{%- if page.description -%}
|
|
{{- page.description | safe -}}
|
|
{%- else -%}
|
|
{{- super() -}}
|
|
{%- endif -%}
|
|
{% endblock description %}
|
|
|
|
{% block content %}
|
|
{% if page.extra and page.extra.show_title is defined %}
|
|
{% set show_title = page.extra.show_title %}
|
|
{% else %}
|
|
{% set show_title = true %}
|
|
{% endif %}
|
|
{% if show_title %}<h1>{{ page.title | safe }}</h1>{% endif %}
|
|
<script src="https://cdn.jsdelivr.net/npm/sinon@9.0.2/pkg/sinon.js"></script>
|
|
<script src="/js/demo.js"></script>
|
|
{{ page.content | safe }}
|
|
{% endblock content %}
|