Skip to content

Commit

Permalink
Mark extra head and body as safe
Browse files Browse the repository at this point in the history
  • Loading branch information
153957 committed Jan 19, 2024
1 parent 6c58f26 commit 2caddab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions theme_153957/templates/base.html
Expand Up @@ -11,10 +11,10 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="{{ theme.url }}/css/normalize.css">
<link rel="stylesheet" href="{{ theme.url }}/css/style.css">
{{ settings.head|default('') }}
{{ settings.head|default('')|safe }}
</head>
<body>
{{ settings.body_prefix|default('') }}
{{ settings.body_prefix|default('')|safe }}
<div id="main"{% if not album.gallery.full_tree %} class="no_menu"{% endif %}>
{% if album.gallery.full_tree %}
<div id="menu">
Expand Down Expand Up @@ -80,7 +80,7 @@

{% endif %}
</div>
{{ settings.body_suffix|default('') }}
{{ settings.body_suffix|default('')|safe }}
<script src="{{ theme.url }}/js/gallery.js"></script>
</body>
</html>

0 comments on commit 2caddab

Please sign in to comment.