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