mirror of
https://github.com/klaussilveira/gitlist.git
synced 2025-11-17 11:10:57 +01:00
21 lines
832 B
Twig
21 lines
832 B
Twig
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>{% block title %}Welcome!{% endblock %}</title>
|
|
<link rel="stylesheet" type="text/css" href="{{ app.request.basepath }}/web/css/style.css">
|
|
<!--[if lt IE 9]>
|
|
<script src="{{ app.request.basepath }}/web/js/html5.js"></script>
|
|
<![endif]-->
|
|
</head>
|
|
|
|
<body>
|
|
{% block body %}{% endblock %}
|
|
<script src="{{ app.request.basepath }}/web/js/jquery.js"></script>
|
|
<script src="{{ app.request.basepath }}/web/js/bootstrap.js"></script>
|
|
<script src="{{ app.request.basepath }}/web/js/codemirror.js"></script>
|
|
<script src="{{ app.request.basepath }}/web/js/showdown.js"></script>
|
|
<script src="{{ app.request.basepath }}/web/js/main.js"></script>
|
|
</body>
|
|
</html>
|