From 818a9d1eddceb22573081138d215d88cf7ff05c1 Mon Sep 17 00:00:00 2001 From: Audrey Jensen Date: Tue, 10 Oct 2023 19:43:48 +0000 Subject: [PATCH] add navbar item config file --- config/navbar.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 config/navbar.yaml diff --git a/config/navbar.yaml b/config/navbar.yaml new file mode 100644 index 0000000..8643fd2 --- /dev/null +++ b/config/navbar.yaml @@ -0,0 +1,15 @@ +# To add a new button: copy the template below. +# Label: This is the text displayed on the navbar item +# Type: Intern (Internal Link), Extern (External link, default), File (locally hosted files) +# URI: Resource locator. For Internal links, this is the route's friendly name. +# Disabled: Defaults to false. If true, button becomes unclickable. + +# TEMPLATE +# - { Label: Example, Type: Extern, URI: "example.com", Disabled: False} +Buttons: + - { Label: Cram-A-Lot, Type: Extern, URI: "https://www.cram-a-lot.com/", Disabled: False} + - { Label: Office 365, Type: Extern, URI: "https://myapps.microsoft.com/", Disabled: False} + - { Label: Directory, Type: Extern, URI: "http://site:81/directory/home.php", Disabled: False} + - { Label: Software Basics, Type: File, URI: "documents/JV Software Basics.docx", Disabled: False} + - { Label: Safety Training, Type: Intern, URI: "safetyHome", Disabled: False} + - { Label: Anonymous Comment, Type: Intern, URI: "complaint", Disabled: False}