-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 1013 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Center</title>
<link rel="stylesheet" href="/style.css">
<script src="https://unpkg.com/[email protected]"></script>
</head>
<body hx-boost="true" hx-indicator="body">
<nav>
<a href="/left" id="link-left">Left</a>
<a href="/" id="link-center" class="active">center</a>
<a href="/right" id="link-right">Right</a>
</nav>
<main class="center" id="main">
<section id="panel-left"><div id="panel-left-content" hx-preserve></div></section>
<section id="panel-center" class="active">
<div id="panel-center-content">
<p>This page output content in the CENTER view.</p>
<img alt="" src="/center.jpg">
</div>
</section>
<section id="panel-right"><div id="panel-right-content" hx-preserve></div></section>
</main>
</body>
</html>