mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-05-01 11:19:32 -05:00
28 lines
924 B
HTML
28 lines
924 B
HTML
<!doctype html>
|
|
|
|
{% load static %}
|
|
{% load i18n %}
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Paperless-ng</title>
|
|
<base href="/">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="username" content="{{username}}">
|
|
<meta name="full_name" content="{{full_name}}">
|
|
<meta name="cookie_prefix" content="{{cookie_prefix}}">
|
|
<meta name="robots" content="noindex,nofollow">
|
|
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
|
<link rel="manifest" href="{% static webmanifest %}">
|
|
<link rel="stylesheet" href="{% static styles_css %}">
|
|
<link rel="apple-touch-icon" href="{% static apple_touch_icon %}">
|
|
</head>
|
|
<body>
|
|
<app-root>{% translate "Paperless-ng is loading..." %}</app-root>
|
|
<script src="{% static runtime_js %}" defer></script>
|
|
<script src="{% static polyfills_js %}" defer></script>
|
|
<script src="{% static main_js %}" defer></script>
|
|
</body>
|
|
</html>
|