mirror of
				https://github.com/kevinveenbirkenbach/homepage.veen.world.git
				synced 2025-11-04 09:27:58 +00:00 
			
		
		
		
	Implemented full width function
This commit is contained in:
		@@ -49,11 +49,16 @@
 | 
			
		||||
        </div>
 | 
			
		||||
        <!-- Include modal -->
 | 
			
		||||
        {% include "moduls/modal.html.j2" %}
 | 
			
		||||
        <script src="{{ url_for('static', filename='js/modal.js') }}"></script>
 | 
			
		||||
        <script src="{{ url_for('static', filename='js/navigation.js') }}"></script>
 | 
			
		||||
        <script src="{{ url_for('static', filename='js/tooltip.js') }}"></script>
 | 
			
		||||
        <script src="{{ url_for('static', filename='js/custom_scrollbar.js') }}"></script>
 | 
			
		||||
        <script src="{{ url_for('static', filename='js/iframe.js') }}"></script>
 | 
			
		||||
        <script src="{{ url_for('static', filename='js/screen.js') }}"></script>
 | 
			
		||||
        {% for name in [
 | 
			
		||||
            'modal',
 | 
			
		||||
            'navigation',
 | 
			
		||||
            'tooltip',
 | 
			
		||||
            'container',
 | 
			
		||||
            'fullwidth',
 | 
			
		||||
            'fullscreen',
 | 
			
		||||
            'iframe',
 | 
			
		||||
        ] %}
 | 
			
		||||
        <script src="{{ url_for('static', filename='js/' ~ name ~ '.js') }}"></script>
 | 
			
		||||
        {% endfor %}
 | 
			
		||||
    </body>
 | 
			
		||||
</html>
 | 
			
		||||
@@ -36,37 +36,35 @@
 | 
			
		||||
 | 
			
		||||
<!-- Navigation Bar -->
 | 
			
		||||
<nav class="navbar navbar-expand-lg navbar-light bg-light menu-{{menu_type}}">
 | 
			
		||||
    <div class="container-fluid">
 | 
			
		||||
        <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav{{menu_type}}" aria-controls="navbarNav{{menu_type}}" aria-expanded="false" aria-label="Toggle navigation">
 | 
			
		||||
            <span class="navbar-toggler-icon"></span>
 | 
			
		||||
        </button>
 | 
			
		||||
        <div class="collapse navbar-collapse" id="navbarNav{{menu_type}}">
 | 
			
		||||
            <ul class="navbar-nav {% if menu_type == 'header' %}ms-auto{% endif %} btn-group">
 | 
			
		||||
                {% for item in navigation[menu_type].children %}
 | 
			
		||||
                    {% if item.url %}
 | 
			
		||||
                        <!-- Single Item -->
 | 
			
		||||
                        <li class="nav-item">
 | 
			
		||||
                            <a class="nav-link btn btn-light {% if item.iframe %}iframe-link{% endif %}" href="{{ item.url }}" target="{{ item.target|default('_blank') }}" data-bs-toggle="tooltip" title="{{ item.description }}">
 | 
			
		||||
    <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav{{menu_type}}" aria-controls="navbarNav{{menu_type}}" aria-expanded="false" aria-label="Toggle navigation">
 | 
			
		||||
        <span class="navbar-toggler-icon"></span>
 | 
			
		||||
    </button>
 | 
			
		||||
    <div class="collapse navbar-collapse" id="navbarNav{{menu_type}}">
 | 
			
		||||
        <ul class="navbar-nav {% if menu_type == 'header' %}ms-auto{% endif %} btn-group">
 | 
			
		||||
            {% for item in navigation[menu_type].children %}
 | 
			
		||||
                {% if item.url %}
 | 
			
		||||
                    <!-- Single Item -->
 | 
			
		||||
                    <li class="nav-item">
 | 
			
		||||
                        <a class="nav-link btn btn-light {% if item.iframe %}iframe-link{% endif %}" href="{{ item.url }}" target="{{ item.target|default('_blank') }}" data-bs-toggle="tooltip" title="{{ item.description }}">
 | 
			
		||||
                            {{ render_icon_and_name(item) }}
 | 
			
		||||
                        </a>
 | 
			
		||||
                    </li>
 | 
			
		||||
                {% else %}
 | 
			
		||||
                    <!-- Dropdown Menu -->
 | 
			
		||||
                    <li class="nav-item dropdown">
 | 
			
		||||
                        <a class="nav-link dropdown-toggle btn btn-light" id="navbarDropdown{{ loop.index }}" role="button" data-bs-display="dynamic" aria-expanded="false">
 | 
			
		||||
                            {% if item.icon is defined and item.icon.class is defined %}
 | 
			
		||||
                                {{ render_icon_and_name(item) }}
 | 
			
		||||
                            </a>
 | 
			
		||||
                        </li>
 | 
			
		||||
                    {% else %}
 | 
			
		||||
                        <!-- Dropdown Menu -->
 | 
			
		||||
                        <li class="nav-item dropdown">
 | 
			
		||||
                            <a class="nav-link dropdown-toggle btn btn-light" id="navbarDropdown{{ loop.index }}" role="button" data-bs-display="dynamic" aria-expanded="false">
 | 
			
		||||
                                {% if item.icon is defined and item.icon.class is defined %}
 | 
			
		||||
                                    {{ render_icon_and_name(item) }}
 | 
			
		||||
                                {% else %}
 | 
			
		||||
                                    <p>Missing icon in item: {{ item }}</p>
 | 
			
		||||
                                {% endif %}
 | 
			
		||||
                            </a>
 | 
			
		||||
                            <ul class="dropdown-menu">
 | 
			
		||||
                                {{ render_children(item.children) }}
 | 
			
		||||
                            </ul>
 | 
			
		||||
                        </li>
 | 
			
		||||
                    {% endif %}
 | 
			
		||||
                {% endfor %}
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
                            {% else %}
 | 
			
		||||
                                <p>Missing icon in item: {{ item }}</p>
 | 
			
		||||
                            {% endif %}
 | 
			
		||||
                        </a>
 | 
			
		||||
                        <ul class="dropdown-menu">
 | 
			
		||||
                            {{ render_children(item.children) }}
 | 
			
		||||
                        </ul>
 | 
			
		||||
                    </li>
 | 
			
		||||
                {% endif %}
 | 
			
		||||
            {% endfor %}
 | 
			
		||||
        </ul>
 | 
			
		||||
    </div>
 | 
			
		||||
</nav>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user