templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
    <html>
        <head>
            <meta charset="utf-8">
            <meta http-equiv="X-UA-Compatible" content="IE=edge">
            <meta name="viewport" content="width=device-width, initial-scale=1">
            <meta name="description" content="">
            <meta name="author" content="">
            <title>{% block title %}WoundCareSystem{% endblock %}</title>
            <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text></svg>">
            {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
            {% block stylesheets %}
                <!-- Bootstrap core CSS -->
                <link href="{{ asset("css/bootstrap.min.css") }}" rel="stylesheet">
    
                <!-- Animation CSS -->
                <link href="{{ asset("css/animate.css") }}" rel="stylesheet">
                <link href="{{ asset("font-awesome/css/font-awesome.min.css") }}" rel="stylesheet">
    
                <!-- Custom styles for this template -->
                {{ encore_entry_link_tags('inspinia') }}
            {% endblock %}
    
    
        </head>
        <body id="{% block bodyid %}{% endblock %}" class="{% block bodyclass %}{% endblock %}">
            {% block body %}{% endblock %}
            {% block javascripts %}
                <!-- Mainly scripts -->
                <script src="{{ asset("js/jquery-3.1.1.min.js") }}"></script>
                <script src="{{ asset("js/popper.min.js") }}"></script>
                <script src="{{ asset("js/bootstrap.js") }}"></script>
                <script src="{{ asset("js/plugins/metisMenu/jquery.metisMenu.js") }}"></script>
                <script src="{{ asset("js/plugins/slimscroll/jquery.slimscroll.min.js") }}"></script>
    
                <!-- Custom and plugin javascript -->
                {{ encore_entry_script_tags('inspinia') }}
                <script src="{{ asset("js/plugins/pace/pace.min.js") }}"></script>
                <script src="{{ asset("js/plugins/wow/wow.min.js") }}"></script>
            {% endblock %}
        </body>
    </html>