Skip to content
This repository has been archived by the owner on Feb 16, 2023. It is now read-only.

Commit

Permalink
added Angular SPA entry page
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas Winkler committed Oct 25, 2020
1 parent 052c168 commit d324e43
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/documents/templates/documents/index.html

This file was deleted.

19 changes: 19 additions & 0 deletions src/documents/templates/index.html
Original file line number Diff line number Diff line change
@@ -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>

0 comments on commit d324e43

Please sign in to comment.