<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>
{% block title %}{% endblock %}
</title>
<link rel="stylesheet" href="{{ asset('css/bootstrap.min.css') }}">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<link href="https://fonts.googleapis.com/css?family=Nunito:200,300,400,600,700,800,900" rel="stylesheet">
<link href="https://use.fontawesome.com/releases/v5.7.1/css/all.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css" rel="stylesheet">
<link href="https://maxcdn.icons8.com/fonts/line-awesome/1.1/css/line-awesome.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<link href="{{ asset('css/styles.min.css') }}" rel="stylesheet">
<link href="{{ asset('css/main.css') }}" rel="stylesheet">
{% block stylesheets %}{% endblock %}
<link rel="shortcut icon" type="image/png" href="{{ asset('img/sml-logo.jpg') }}"/>
<link rel="apple-touch-icon" href="{{ asset('img/sml-logo.jpg') }}" />
<link rel="apple-touch-icon" sizes="72x72" href="{{ asset('img/sml-logo.jpg') }}" />
<link rel="apple-touch-icon" sizes="114x114" href="{{ asset('img/sml-logo.jpg') }}" />
</head>
<body {% if app.request.get('_route') == "app_login" %} class="login-body" {% endif %}>
{% block body %}{% endblock %}
<script src="{{ asset('js/jquery.min.js') }}"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.4/umd/popper.min.js" type="text/javascript"></script>
<script src="{{ asset('js/bootstrap.min.js') }}"></script>
<script src="{{ asset('js/script.min.js') }}"></script>
{% block javascripts %}{% endblock %}
</body>
</html>