added MDB

This commit is contained in:
overflowerror 2021-01-05 19:07:30 +01:00
parent 6aa9fcc56d
commit da3bbbe08a
8 changed files with 2372 additions and 9 deletions

View file

@ -1,2 +1,3 @@
twig:
default_path: '%kernel.project_dir%/templates'
form_themes: [ 'bootstrap_4_layout.html.twig' ]

34
public/css/mdb.min.css vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

22
public/css/mdb.rtl.min.css vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

20
public/js/mdb.min.js vendored Normal file

File diff suppressed because one or more lines are too long

2251
public/js/mdb.min.js.map Normal file

File diff suppressed because one or more lines are too long

View file

@ -1,12 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}Welcome!{% endblock %}</title>
{% block stylesheets %}{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
{% block javascripts %}{% endblock %}
</body>
<head>
<meta charset="UTF-8">
<title>{% block title %}Welcome!{% endblock %}</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.11.2/css/all.css"/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons">
<link rel="stylesheet" href="{{ asset("css/mdb.min.css") }}">
<link rel="stylesheet" href="{{ asset("css/mdb.rtl.min.css") }}">
{% block stylesheets %}{% endblock %}
</head>
<body>
<div class="container">
{% block body %}{% endblock %}
</div>
{% block javascripts %}{% endblock %}
<script src="{{ asset("js/mdb.min.js") }}"></script>
</body>
</html>