added blog to the navbar

This commit is contained in:
Jordan Violet
2022-09-29 08:46:23 -04:00
parent 26b397310c
commit e8964b9c88

134
navbar.js
View File

@@ -1,61 +1,77 @@
module.exports = { module.exports = {
title: '', title: "",
logo: { logo: {
alt: 'SailPoint Developer Community', alt: "SailPoint Developer Community",
src: 'img/SailPoint-Developer-Community-Lockup.png', src: "img/SailPoint-Developer-Community-Lockup.png",
srcDark: 'img/SailPoint-Developer-Community-Inverse-Lockup.png' srcDark: "img/SailPoint-Developer-Community-Inverse-Lockup.png",
},
items: [
{
type: "dropdown",
label: "IdentityNow",
position: "left",
items: [
{ to: "#", label: "API Specifications", className: "navbar__section" },
{ to: "/idn/api/v3", label: "V3 APIs", className: "indent" },
{ to: "/idn/api/beta", label: "Beta APIs", className: "indent" },
{ to: "#", label: "Documentation", className: "navbar__section" },
{ to: "idn/docs", label: "IDN Documentation", className: "indent" },
{ to: "#", label: "Training", className: "navbar__section" },
{
href: "https://university.sailpoint.com/Saba/Web_spf/NA10P1PRD075/guest/categorydetail/categ000000000003041/true/xxemptyxx/",
label: "IdentityNow Certifications",
className: "indent",
},
],
}, },
items: [ {
{ type: "dropdown",
type: 'dropdown', label: "IdentityIQ",
label: 'IdentityNow', position: "left",
position: 'left', items: [
items: [ { to: "#", label: "API Specifications", className: "navbar__section" },
{to: "#", label: "API Specifications", className: "navbar__section",}, { to: "/iiq/api", label: "IIQ APIs", className: "indent" },
{to: '/idn/api/v3', label: 'V3 APIs', className: "indent"}, { to: "#", label: "Training", className: "navbar__section" },
{to: '/idn/api/beta', label: 'Beta APIs', className: "indent"}, {
{to: "#", label: "Documentation", className: "navbar__section",}, href: "https://university.sailpoint.com/Saba/Web_spf/NA10P1PRD075/guest/categorydetail/categ000000000003042/true/xxemptyxx/",
{to: 'idn/docs', label: 'IDN Documentation', className: "indent"}, label: "IdentityIQ Certifications",
{to: "#", label: "Training", className: "navbar__section",}, className: "indent",
{href: 'https://university.sailpoint.com/Saba/Web_spf/NA10P1PRD075/guest/categorydetail/categ000000000003041/true/xxemptyxx/', label: 'IdentityNow Certifications', className: "indent"}, },
], ],
}, },
{ {
type: 'dropdown', position: "left",
label: 'IdentityIQ', label: "Blog",
position: 'left', to: "https://medium.com/sailpointtechblog",
items: [ },
{to: "#", label: "API Specifications", className: "navbar__section",}, {
{to: '/iiq/api', label: 'IIQ APIs', className: "indent"}, position: "left",
{to: "#", label: "Training", className: "navbar__section",}, label: "Ideas",
{href: 'https://university.sailpoint.com/Saba/Web_spf/NA10P1PRD075/guest/categorydetail/categ000000000003042/true/xxemptyxx/', label: 'IdentityIQ Certifications', className: "indent"}, to: "https://developer-sailpoint.ideas.aha.io/",
], },
}, {
{ position: "left",
position: "left", label: "Discuss",
label: "Ideas", to: "https://developer.sailpoint.com/discuss",
to: "https://developer-sailpoint.ideas.aha.io/" },
}, {
{ type: "dropdown",
position: "left", label: "Support",
label: "Discuss", position: "right",
to: "https://developer.sailpoint.com/discuss" items: [
}, {
{ label: "Submit Support Ticket",
type: "dropdown", href: "https://support.sailpoint.com/hc/en-us/requests/new?ticket_form_id=360000629992",
label: "Support", },
position: "right", { label: "Compass", href: "https://community.sailpoint.com" },
items: [ { label: "Platform Status", href: "https://status.sailpoint.com/" },
{label: "Submit Support Ticket", href: "https://support.sailpoint.com/hc/en-us/requests/new?ticket_form_id=360000629992"}, ],
{label: "Compass", href: "https://community.sailpoint.com"}, },
{label: "Platform Status", href: "https://status.sailpoint.com/"}, {
] position: "right",
}, to: "https://github.com/sailpoint-oss",
{ className: "header-github-link",
position: "right", "aria-label": "SailPoint Open-source GitHub",
to: "https://github.com/sailpoint-oss", },
className: "header-github-link", ],
"aria-label": "SailPoint Open-source GitHub" };
},
]
}