mirror of
https://framagit.org/tom79/fediplan.git
synced 2025-04-05 21:51:50 +02:00
40 lines
1.2 KiB
Twig
40 lines
1.2 KiB
Twig
![]() |
<!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">
|
||
|
{% block stylesheets %}{% endblock %}
|
||
|
|
||
|
<title>{% block title %}{{ rss_feed_title }}{% endblock %}</title>
|
||
|
|
||
|
<link rel="stylesheet" href="{{ asset('css/bootstrap.min.css') }}">>
|
||
|
|
||
|
<!-- 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 -->
|
||
|
<script src="{{ asset('js/jquery.min.js') }}"></script>
|
||
|
<script src="{{ asset('js/bootstrap.min.js') }}"></script>
|
||
|
{% block javascripts %}{% endblock %}
|
||
|
</body>
|
||
|
</html>
|