templates/base.html.twig line 1

Open in your IDE?
  1. <!doctype html>
    <html lang="en">
    
    <head>
        <title>{% block title %}Welcome to the Agent Viewer{% endblock %}</title>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
        {% block stylesheets %}
            <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css"
                  integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb"
                  crossorigin="anonymous">
    
        {% endblock %}
    </head>
    
    <body>
    <div class="container align-right">
    
        {% block pageTop %}
    
        {% endblock %}
    
        <div class="row">
            <div class="col-sm-4">
            </div>
            <div class="col-sm-4">
    
                {% for type, flashes in app.session.flashbag.all %}
                    {% for flash in flashes %}
                        <div role="alert" class="alert alert-{{ type }} alert-dismissible">
                            <button type="button" data-dismiss="alert" aria-label="Close" class="close"><span
                                        aria-hidden="true" class="mdi mdi-close"></span></button>
                            <div class="icon"><span class="mdi mdi-check"></span></div>
                            <div class="message">{{ flash }}</div>
                        </div>
                    {% endfor %}
                {% endfor %}
            </div>
            <div class="col-sm-4">
            </div>
        </div>
    
    
        {% block body %}{% endblock %}
    
        {% block footer %}{% endblock %}
    
    </div>
    
    <footer class="footer">
        <div class="container text-center">
            <span class="text-muted">
                <hr>
                <br />
    
                <p>Provided, as a service<br />by</p>
                <p> <span style="font-weight: bold">Sage Link Computing</span></p></span>
        </div>
    </footer>
    
    
    {% block javascripts %}
        <script src="https://code.jquery.com/jquery-3.2.1.min.js"
                integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
        <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js"
                integrity="sha384-vFJXuSJphROIrBnz7yo7oB41mKfc8JzQZiCq4NCceLEaO4IHwicKwpJf9c9IpFgh"
                crossorigin="anonymous"></script>
        <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js"
                integrity="sha384-alpBpkh1PFOepccYVYDB4do5UnbKysX5WZXm3XxPqe5iKTfUKjNkCk9SaVuEZflJ"
                crossorigin="anonymous"></script>
        <script>
            // $('.dropdown-toggle').dropdown();
        </script>
    {% endblock %}
    </body>
    </html>