mirror of
https://github.com/sigmasternchen/MyTube
synced 2025-03-15 21:08:55 +00:00
added MDB
This commit is contained in:
parent
6aa9fcc56d
commit
da3bbbe08a
8 changed files with 2372 additions and 9 deletions
|
@ -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
34
public/css/mdb.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
14
public/css/mdb.min.css.map
Normal file
14
public/css/mdb.min.css.map
Normal file
File diff suppressed because one or more lines are too long
22
public/css/mdb.rtl.min.css
vendored
Normal file
22
public/css/mdb.rtl.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
14
public/css/mdb.rtl.min.css.map
Normal file
14
public/css/mdb.rtl.min.css.map
Normal file
File diff suppressed because one or more lines are too long
20
public/js/mdb.min.js
vendored
Normal file
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
2251
public/js/mdb.min.js.map
Normal file
File diff suppressed because one or more lines are too long
|
@ -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>
|
||||||
|
|
Loading…
Reference in a new issue