fediplan/templates/base.html.twig

73 lines
3.2 KiB
Twig
Raw Permalink 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>
2024-05-18 15:23:43 +00:00
<html lang="{{ app.request.locale }}" {% if app.request.locale == 'ar'%}dir="rtl"{% endif %}>
2019-08-08 17:29:59 +02:00
<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-21 18:08:42 +02:00
<meta property="og:title" content="FediPlan" />
<meta property="og:description" content="{{ 'common.about_fediplan'|trans}}" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://plan.fedilab.app" />
2019-08-21 18:09:49 +02:00
<meta property="og:image" content="{{ app.request.getSchemeAndHttpHost() ~ asset('img/FediPlan.png') }}" />
2019-08-08 17:29:59 +02:00
2019-08-22 19:09:49 +02:00
<title>{% block 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-22 19:09:49 +02:00
<div class="container" 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">
2024-05-19 08:00:18 +02:00
<div class="col-md-4" style="text-align: center;">
2019-08-11 10:27:57 +02:00
<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>
2024-05-19 08:00:18 +02:00
<div class="col-md-4" style="margin-top: 10px; text-align: center;">
2019-08-22 10:19:37 +02:00
{{ 'common.author'|trans }}: Thomas<br/>
2024-04-19 17:51:20 +02:00
Mastodon: <a href="https://toot.fedilab.app/@apps" target="_blank">@apps</a><br/>
2019-08-10 18:34:18 +02:00
Framagit: <a href="https://framagit.org/tom79/" target="_blank">@tom79</a><br/>
2024-04-19 17:51:20 +02:00
Codeberg: <a href="https://codeberg.org/tom79/" target="_blank">@tom79</a><br/>
2019-08-10 18:34:18 +02:00
Github: <a href="https://github.com/stom79/" target="_blank">@stom79</a><br/>
</div>
2024-05-19 08:00:18 +02:00
<div class="col-md-4" style="margin-top: 10px; text-align: center;">
2019-08-22 10:19:37 +02:00
{{ 'common.license'|trans }}: <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>
2024-05-18 15:23:43 +00:00
<script src="{{ asset('js/bootstrap.bundle.min.js') }}"></script>
2019-08-09 13:55:27 +02:00
{% endblock %}
2019-08-08 17:29:59 +02:00
</body>
</html>