2024-02-27 15:11:01 +00:00
|
|
|
package bot
|
|
|
|
|
|
|
|
templ (b *bot) index() {
|
|
|
|
<!DOCTYPE html />
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<!-- Load required Bootstrap and BootstrapVue CSS -->
|
2024-02-27 17:02:16 +00:00
|
|
|
<link type="text/css" rel="stylesheet" href="//unpkg.com/bootstrap/dist/css/bootstrap.min.css"/>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
2024-02-27 15:11:01 +00:00
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<title>catbase</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div id="app">
|
|
|
|
@b.Nav("", b.GetWebNavigation())
|
|
|
|
</div>
|
|
|
|
|
2024-02-27 17:02:16 +00:00
|
|
|
<script src="//unpkg.com/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
|
2024-02-27 15:11:01 +00:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
}
|