fediplan/templates/base.html.twig

44 lines
1.3 KiB
Twig
Raw Normal View History

2019-08-08 17:29:59 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="favicon.ico">
2019-08-09 13:55:27 +02:00
2019-08-08 17:29:59 +02:00
<title>{% block title %}{{ rss_feed_title }}{% endblock %}</title>
2019-08-09 13:55:27 +02:00
{% block stylesheets %}
<link rel="stylesheet" href="{{ asset('css/bootstrap.min.css') }}">
{% endblock %}
2019-08-08 17:29:59 +02:00
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9] -->
<script src="{{ asset('js/html5shiv.min.js') }}"></script>
<script src="{{ asset('js/respond.min.js') }}"></script>
<![endif]-->
<style type="text/css">
.tab { margin-left: 13px; }
</style>
</head>
<body>
<div class="container" style="margin-top: 80px;">
{% block content %}{% endblock %}
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
2019-08-09 13:55:27 +02:00
{% block javascripts %}
<script src="{{ asset('js/jquery.min.js') }}"></script>
<script src="{{ asset('js/bootstrap.min.js') }}"></script>
{% endblock %}
2019-08-08 17:29:59 +02:00
</body>
</html>