Files
Umbraco-CMS/src/Umbraco.Web.UI.New/umbraco/UmbracoInstall/Index.cshtml
Jacob Overgaard 9c00c95f01 v13: New Backoffice in CMS (POC) (#13664)
* Added a new executeable to new backoffice

* add new backoffice client as submodule

* add new backoffice client as project

* add bootstrap of backoffice client

* experimentally allow CORS from local vite app running the backoffice

* fix base path

* move new backoffice projects to NewBackoffice folder

* add support for redirect urls to login page (temporary)

* update references to v13

* override databaseinstall/index.cshtml

* copy ignore lines from normal project

* remove redirect to AuthorizeUpgrade

* codeql: checkout submodules

* Section catch-all route

* fixed tests

* remove starter-kit file

* remove grid views

Co-authored-by: Bjarke Berg <mail@bergmania.dk>
2023-01-18 15:02:59 +01:00

17 lines
568 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<base href="/umbraco/" />
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/umbraco/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Umbraco</title>
<link rel="stylesheet" href="/umbraco/style.css"/>
<script type="module" src="/umbraco/main.js"></script>
</head>
<body class="uui-font uui-text" style="margin: 0; padding: 0; overflow: hidden">
<umb-app></umb-app>
</body>
</html>