Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/unfold/templates/unfold/layouts/skeleton.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
{% capture as nav_global_side silent %}{% block nav-global-side %}{% endblock %}{% endcapture %}
{% capture as actions_items silent %}{% block actions-items %}{% endblock %}{% endcapture %}
{% capture as extra_userlinks silent %}{% block extra_userlinks %}{% endblock %}{% endcapture %}
{% capture as show_back_button silent %}{% block show_back_button %}{{ show_back_button }}{% endblock %}{% endcapture %}
{% capture as is_fullwidth silent %}{% block is_fullwidth %}{{ is_fullwidth }}{% endblock %}{% endcapture %}
{% capture as show_back_button silent %}{% block show_back_button %}{% if show_back_button|default:False %}1{% endif %}{% endblock %}{% endcapture %}
{% capture as is_fullwidth silent %}{% block is_fullwidth %}{{ is_fullwidth|default:'' }}{% endblock %}{% endcapture %}

<!DOCTYPE html>
<html lang="{{ LANGUAGE_CODE|default:"en-us" }}" dir="{{ LANGUAGE_BIDI|yesno:"rtl,ltr,auto" }}" {% if theme %}class="{{ theme }}"{% endif %} x-data="theme({% if theme %}'{{ theme }}'{% endif %})" x-bind="themeBindings" x-cloak>
Expand Down