aboutsummaryrefslogtreecommitdiff
path: root/inst/web/templates/tabs.html
diff options
context:
space:
mode:
authorNaeem Model <me@nmode.ca>2025-01-06 23:55:43 +0000
committerNaeem Model <me@nmode.ca>2025-01-06 23:55:43 +0000
commite920b3e514e717fc05ed524267d3b53e272fec51 (patch)
tree353cfb36aca946d69da6d6dcacc0cb66177050ef /inst/web/templates/tabs.html
parent2d34b71c7a8da7fd0fac59b934145286b2be7b1f (diff)
Update web app entry point
- Rename 'app' -> 'web' - Return shiny app object in entry point function
Diffstat (limited to 'inst/web/templates/tabs.html')
-rw-r--r--inst/web/templates/tabs.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/inst/web/templates/tabs.html b/inst/web/templates/tabs.html
new file mode 100644
index 0000000..351b480
--- /dev/null
+++ b/inst/web/templates/tabs.html
@@ -0,0 +1,14 @@
+<nav class="nav nav-pills nav-fill">
+ <a class="nav-link rounded-0 active" data-bs-toggle="pill" href="#about">
+ About <span class="glyphicon glyphicon-info-sign"></span>
+ </a>
+ <a class="nav-link rounded-0" data-bs-toggle="pill" href="#data">
+ Data <span class="glyphicon glyphicon-list-alt"></span>
+ </a>
+ <a class="nav-link rounded-0" data-bs-toggle="pill" href="#estimation">
+ Estimation <span class="glyphicon glyphicon-random"></span>
+ </a>
+ <a class="nav-link rounded-0" data-bs-toggle="pill" href="#help">
+ Help <span class="glyphicon glyphicon-question-sign"></span>
+ </a>
+</nav>