Yu-Gi-Oh! Deck Building and Card Inventory Management web interface written in Common Lisp, utilizing HTMX.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
307B

  1. {% extends "layouts/default.html" %}
  2. {% block title %}{{ title }}{% endblock %}
  3. {% block content %}
  4. <div class="content">
  5. {% if title %}
  6. <h1 class="title">{{ title }}</h1>
  7. {% endif %}
  8. {% if subtitle %}
  9. <p class="subtitle">{{ subtitle }}</p>
  10. {% endif %}
  11. {{ html | safe }}
  12. </div>
  13. {% endblock %}