lib.itmens/catalog/templates/embed_base.html

20 lines
579 B
HTML
Raw Permalink Normal View History

2023-02-10 15:56:13 -05:00
{% load static %}
{% load i18n %}
{% load l10n %}
{% load humanize %}
{% load mastodon %}
{% load strip_scheme %}
{% load thumb %}
2025-02-06 19:17:53 +00:00
{% get_current_language as LANGUAGE_CODE %}
2023-02-10 15:56:13 -05:00
<!DOCTYPE html>
2025-02-06 19:17:53 +00:00
<html lang="{{ LANGUAGE_CODE }}">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2024-04-06 22:52:35 -04:00
<script src="{{ cdn_url }}/npm/cash-dom@8.1.5/dist/cash.min.js"></script>
{% block head %}{% endblock %}
2024-07-13 01:36:18 -04:00
<title>{{ site_name }} - {% trans item.category.label %} | {{ item.display_title }}</title>
</head>
<body></body>
2023-02-10 15:56:13 -05:00
</html>