added Angular SPA entry page

This commit is contained in:
Jonas Winkler 2020-10-25 23:30:15 +01:00
parent 052c1680f3
commit d324e4383a
2 changed files with 19 additions and 11 deletions

View File

@ -1,11 +0,0 @@
<!DOCTYPE html>
<html lang="en-gb">
<head>
<title>Paperless</title>
<meta charset="utf-8">
</head>
<body>
{# One day someone (maybe even myself) is going to write a proper web front-end for Paperless, and this is where it'll start. #}
</body>
</html>

View File

@ -0,0 +1,19 @@
<!doctype html>
{% load static %}
<html lang="en">
<head>
<meta charset="utf-8">
<title>PaperlessUi</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="{% static 'styles.css' %}"></head>
<body>
<app-root>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>