fediplan/templates/base.html.twig

67 lines
2.6 KiB
Twig
Raw Normal View History

2019-08-21 10:16:55 +02:00
{% trans_default_domain 'fediplan' %}
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="">
2019-08-11 10:32:07 +02:00
<link rel="icon" href="{{ asset('img/FediPlan32.png') }}">
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-10 18:34:18 +02:00
<link rel="stylesheet" href="{{ asset('css/style.css') }}">
2019-08-09 13:55:27 +02:00
{% block stylesheets %}
<link rel="stylesheet" href="{{ asset('css/bootstrap.min.css') }}">
2019-08-11 10:27:57 +02:00
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
2019-08-09 13:55:27 +02:00
{% 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>
2019-08-10 18:43:37 +02:00
<div id="wrap">
2019-08-10 18:34:18 +02:00
<div class="container" style="margin-top: 80px;" id="main_contain">
2019-08-08 17:29:59 +02:00
{% block content %}{% endblock %}
</div>
2019-08-10 18:43:37 +02:00
</div>
2019-08-10 18:34:18 +02:00
<footer class="footer">
<div class="container">
<div class="row">
2019-08-11 10:27:57 +02:00
<div class="col-md-4" style="text-align: center;">
<img src="{{ asset('img/FediPlan.png') }}" width="80" style=" border-radius: 5%;margin-top: 10px; margin-bottom: 10px; "><br/>
FediPlan -{{ "now"|date("Y") }}
2019-08-10 18:34:18 +02:00
</div>
<div class="col-md-4" style="margin-top: 10px; text-align: center;">
Author: Thomas<br/>
Mastodon: <a href="https://framapiaf.org/@fedilab" target="_blank">@Fedilab</a><br/>
Framagit: <a href="https://framagit.org/tom79/" target="_blank">@tom79</a><br/>
Github: <a href="https://github.com/stom79/" target="_blank">@stom79</a><br/>
</div>
2019-08-11 10:27:57 +02:00
<div class="col-md-4" style="margin-top: 10px; text-align: center;">
License: <a href="https://www.gnu.org/licenses/gpl-3.0.fr.html" target="_blank">GPL 3</a><br/>
2019-08-21 10:16:55 +02:00
<a href="https://framagit.org/tom79/fediplan" target="_blank">{{ 'common.source_code'|trans}}</a>
2019-08-11 10:27:57 +02:00
</div>
2019-08-10 18:34:18 +02:00
</div>
</div>
</footer>
2019-08-08 17:29:59 +02:00
<!-- 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>