mirror of
https://github.com/bigskysoftware/htmx.git
synced 2025-09-27 21:13:31 +00:00

* Add description to architectural-sympathy And fix some typos * Add description to codin-dirty * Add description to complexity-budget * Add description to does-hypermedia-scale * Add description to future and fix date * Add description to hateoas * Add description to how-did-rest-come-to-mean-... * Add description to htmx-sucks * Add description to hypermedia-apis-vs-data-apis * Add description to hypermedia-clients * Add description to hypermedia-driven-applications * Update hypermedia-friendly-scripting.md * Update hypermedia-on-whatever-youd-like.md * Update is-htmx-another-javascript-framework.md * Update locality-of-behaviour.md * Update lore.md * Update mvc.md * Update no-build-step.md * Update prefer-if-statements.md * Update rest-copypasta.md * Update right-click-view-source.md * Update spa-alternative.md * Update splitting-your-apis.md * Update template-fragments.md * Update rest-explained.md * Update two-approaches-to-decoupling.md * Update vendoring.md * Remove double-quote characters from descriptions * Add description block to demo.html * Update view-transitions.md * Update web-security-basics-with-htmx.md * Update webcomponents-work-great.md * Update when-to-use-hypermedia.md * Update why-gumroad-didnt-choose-htmx.md * Update why-tend-not-to-use-content-negotiation.md * Update you-cant.md * Fix description for htmx-sucks * Use `authors` built-in variable Instead of the custom `author` taxonomy * Descriptions and typos in interviews * That double word is actually correct
26 lines
736 B
HTML
26 lines
736 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://unpkg.com/sinon@9.0.2/pkg/sinon.js"></script>
|
|
<script src="/js/demo.js"></script>
|
|
{{ page.content | safe }}
|
|
{% endblock content %}
|