68 lines
No EOL
1.9 KiB
HTML
68 lines
No EOL
1.9 KiB
HTML
<!DOCTYPE HTML5>
|
|
<html xmlns:th="http://www.thymeleaf.org" xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta
|
|
name="htmx-config"
|
|
content='{
|
|
"responseHandling":[
|
|
{"code":"204", "swap": false},
|
|
{"code":"[23]..", "swap": true},
|
|
{"code":"404", "swap": true},
|
|
{"code":"[45]..", "swap": false, "error":true},
|
|
{"code":"...", "swap": true}
|
|
],
|
|
"selfRequestsOnly": false
|
|
}'
|
|
/>
|
|
<title>LSP manager</title>
|
|
<link rel="icon" href="/app/static/favicon.png" />
|
|
<link rel="stylesheet" href="https://unpkg.com/missing.css@1.2.0" />
|
|
<link rel="stylesheet" href="/app/static/styles.css" />
|
|
<script defer="defer" src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/htmx.org@2.0.7/dist/htmx.js" integrity="sha384-yWakaGAFicqusuwOYEmoRjLNOC+6OFsdmwC2lbGQaRELtuVEqNzt11c2J711DeCZ" crossorigin="anonymous"></script>
|
|
<script defer="defer" src="/app/static/script.js"></script>
|
|
|
|
|
|
</head>
|
|
|
|
<body hx-boost="true" hx-indicator="#indicator" data-bs-theme="light" >
|
|
<div class='App'>
|
|
<header id="header" class="navbar">
|
|
|
|
<nav >
|
|
|
|
<ul role="list">
|
|
<li >
|
|
<a class="active" aria-current="page" href="/app/home">Home</a>
|
|
</li>
|
|
|
|
<li >
|
|
<a href="/app/socket">connections </a>
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</header>
|
|
<main id="main" class="App-main">
|
|
<p layout:fragment="content">MAIN</p>
|
|
</main>
|
|
<footer id="footer">
|
|
<button onclick="toast('Hi. '+new Date())">toast</button>
|
|
|
|
LoggedIn: ??
|
|
<button type="button" class="btn btn-primary" id="liveToastBtn">Show live toast</button>
|
|
|
|
|
|
|
|
</footer>
|
|
</div>
|
|
|
|
|
|
</body>
|
|
|
|
</html> |