notifications.html
    
    HTML document, ASCII text
        
            1
            {% extends "default.html" %} 
        
            2
            {% block title %} 
        
            3
                Notifications 
        
            4
            {% endblock %} 
        
            5
            {% block breadcrumbs %} 
        
            6
                <li><a href="/notifications">Notifications</a></li> 
        
            7
            {% endblock %} 
        
            8
            {% block content %} 
        
            9
                <x-vbox> 
        
            10
                    <x-frame style="--width: 896px;" class="flexible-space"> 
        
            11
                        <x-vbox> 
        
            12
                            {% for notification in notifications %} 
        
            13
                                <article class="card"> 
        
            14
                                    <section class="card-main"> 
        
            15
                                        {{ notification.notification.json }} 
        
            16
                                    </section> 
        
            17
                                </article> 
        
            18
                            {% endfor %} 
        
            19
                        </x-vbox> 
        
            20
                    </x-frame> 
        
            21
                </x-vbox> 
        
            22
            {% endblock %}