1
0
mirror of https://github.com/velour/catbase.git synced 2025-04-03 19:51:42 +00:00
catbase/bot/index.templ

21 lines
558 B
Plaintext
Raw Normal View History

2024-02-27 10:11:01 -05:00
package bot
templ (b *bot) index() {
<!DOCTYPE html />
<html lang="en">
<head>
<!-- Load required Bootstrap and BootstrapVue CSS -->
<link type="text/css" rel="stylesheet" href="//unpkg.com/bootstrap/dist/css/bootstrap.min.css" />
<link type="text/css" rel="stylesheet" href="//unpkg.com/bootstrap-vue@^2/dist/bootstrap-vue.min.css" />
<meta charset="UTF-8" />
<title>catbase</title>
</head>
<body>
<div id="app">
@b.Nav("", b.GetWebNavigation())
</div>
</body>
</html>
}