abe3733b09
Avoid to load big text files Other improvements
34 lines
2.2 KiB
Twig
34 lines
2.2 KiB
Twig
<!doctype html>
|
|
<html lang="{{ current_lang }}">
|
|
<head>
|
|
<title>{% block title %}Default{% endblock %} | {{ config.app_name }}</title>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="description" content="XBackBone is a simple and lightweight PHP backend for ShareX">
|
|
<link rel="shortcut icon" href="{{ urlFor('/favicon.ico') }}" type="image/x-icon">
|
|
<link rel="icon" href="{{ urlFor('/favicon.ico') }}" type="image/x-icon">
|
|
<link href="{{ urlFor('/static/bootstrap/css/bootstrap.min.css') }}" rel="preload" as="style" onload="this.rel='stylesheet'">
|
|
<link href="{{ urlFor('/static/highlightjs/styles/monokai.css') }}" rel="stylesheet">
|
|
<link href="{{ urlFor('/static/videojs/video-js.min.css') }}" rel="stylesheet">
|
|
<link href="{{ urlFor('/static/app/app.css') }}" rel="preload" as="style" onload="this.rel='stylesheet'">
|
|
<script src="{{ urlFor('/static/jquery/jquery.min.js') }}" rel="prefetch"></script>
|
|
<script src="{{ urlFor('/static/bootstrap/js/bootstrap.bundle.min.js') }}" rel="prefetch"></script>
|
|
<script src="{{ urlFor('/static/fontawesome/js/all.min.js') }}" rel="prefetch"></script>
|
|
<script src="{{ urlFor('/static/highlightjs/highlight.pack.min.js') }}"></script>
|
|
<script src="{{ urlFor('/static/clipboardjs/clipboard.min.js') }}"></script>
|
|
<script src="{{ urlFor('/static/videojs/video.min.js') }}"></script>
|
|
<script src="{{ urlFor('/static/app/app.js') }}" rel="prefetch"></script>
|
|
<script>hljs.initHighlightingOnLoad();</script>
|
|
<script>window.AppConfig = {'base_url': '{{ config.base_url }}', 'lang': {'publish': '{{ lang('publish') }}', 'hide': '{{ lang('hide') }}'}}</script>
|
|
{% block head %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
{% block content %}{% endblock %}
|
|
{% block footer %}
|
|
<div class="container-fluid footer" style="display: none; font-size: 0.8rem">
|
|
<div class="text-muted">Proudly powered by <a href="https://github.com/SergiX44/XBackBone">XBackBone{% if session.admin %} v{{ PLATFORM_VERSION }}{% endif %}</a>
|
|
— <i class="fas fa-fw fa-balance-scale"></i> AGPL v3.0</div>
|
|
</div>
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|