Arno Kaimbacher
cefd9081ae
Some checks failed
CI Pipeline / japa-tests (push) Failing after 52s
- adapted menu.ts, NavBar.vue, NavBarItem.vue for highlighting active nav item - NavBarItemLabel.vue for app menu highlighting - adapted routes.ts - adapted app.edge for new favicon - adapted LayoutAuthenticated.vue (:showAsideMenu="false") for showing AsideMenu optional - new material icons: BriefcaseCheck.vue, SwapHorizontal.vue, AccountGroup.vue, Lock.vue - started with FirstRunWizard
21 lines
495 B
Plaintext
21 lines
495 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
{{-- <link rel="icon" type="image/png" href="/favicon.ico"> --}}
|
|
<link rel="icon" type="image/png" href="/favicon.png">
|
|
{{-- <link rel="icon" href="/apps/theming/favicon/settings?v=ad28c447"> --}}
|
|
|
|
@routes
|
|
@entryPointStyles('app')
|
|
@entryPointScripts('app')
|
|
|
|
{{-- <title>myapp</title> --}}
|
|
|
|
</head>
|
|
<body>
|
|
@inertia()
|
|
</body>
|
|
</html>
|