You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.9 KiB
54 lines
1.9 KiB
<!DOCTYPE html> |
|
<html lang="en" data-theme="{{ app.session.get('theme', 'light') }}"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>{% block title %}Decent Newsroom{% endblock %}</title> |
|
<meta name="description" content="Decentralised Newsroom - the future of journalism"> |
|
<link rel="icon" type="image/png" href="{{ asset('icons/favicon-96x96.png') }}" sizes="96x96" /> |
|
<link rel="icon" type="image/svg+xml" href="{{ asset('icons/favicon.svg') }}" /> |
|
<link rel="shortcut icon" href="{{ asset('icons/favicon.ico') }}" /> |
|
<link rel="apple-touch-icon" href="{{ asset('icons/apple-touch-icon.png') }}"> |
|
<meta name="apple-mobile-web-app-title" content="Newsroom" /> |
|
|
|
<meta name="lightning" content="coffeecalm152228@getalby.com" /> |
|
|
|
<link rel="manifest" href="{{ path('pwa_manifest') }}"> |
|
|
|
{% block ogtags %} |
|
<meta property="og:image" content="{{ asset('icons/favicon.ico') }}" /> |
|
{% endblock %} |
|
|
|
{% block stylesheets %}{% endblock %} |
|
{% block javascripts %} |
|
{% block importmap %}{{ importmap('app') }}{% endblock %} |
|
{% endblock %} |
|
<meta name="mercure-hub" content="{{ mercure_public_hub_url }}" /> |
|
</head> |
|
<body data-controller="service-worker visit-analytics" data-visit-analytics-path-value="{{ app.request.pathInfo }}"> |
|
|
|
{% block header %} |
|
<twig:Header /> |
|
{% endblock %} |
|
|
|
{% block layout %}{% endblock %} |
|
|
|
<div data-controller="utility--install-prompt"> |
|
<div |
|
class="install-prompt-box hidden" |
|
data-utility--install-prompt-target="promptBox" |
|
> |
|
<p>Install this app on your device for quick access?</p> |
|
<button data-action="click->utility--install-prompt#install">Yes, install</button> |
|
<button data-action="click->utility--install-prompt#dismiss">No thanks</button> |
|
</div> |
|
</div> |
|
|
|
{% block footer %} |
|
<footer> |
|
<twig:Footer /> |
|
</footer> |
|
{% endblock %} |
|
|
|
</body> |
|
</html>
|
|
|