mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-03-25 09:21:10 +00:00
As is encouraged[1] https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/script#attribute_is_not_set_default_an_empty_string_or_a_javascript_mime_type Links: - Apps page loads and javascript works as expected. Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
14 lines
276 B
HTML
14 lines
276 B
HTML
{% extends 'cards.html' %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load static %}
|
|
{% load i18n %}
|
|
|
|
{% block page_js %}
|
|
<script src="{% static 'tags.js' %}" defer></script>
|
|
{% endblock %}
|
|
|
|
{% block body_class %}apps-page{% endblock %}
|