26 lines
1.0 KiB
Twig
26 lines
1.0 KiB
Twig
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport"
|
|
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>{% block title %}Admin{% endblock %}</title>
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>{{ block('title') }}</h1>
|
|
|
|
<div class="row">
|
|
<div class="col col-12">
|
|
<a href="{{ path('question_index') }}" class="btn btn-primary btn-xs">Questions</a>
|
|
<a href="{{ path('response_index') }}" class="btn btn-primary btn-xs">Responses</a>
|
|
</div>
|
|
|
|
<div class="col col-12" style="margin-top: 30px;">
|
|
{% block body %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |