Files
Gainsight/customer_templates/Climbing_Norm/_sub_navigation.html.liquid
Norm Rasmussen 26beb4c7f2 new directory
2022-02-23 13:18:41 -05:00

44 lines
1.6 KiB
Plaintext

<main class="np-main np-catalog np-subpage-container np-max-width">
<div class="np-catalog-header-wrapper">
<div class="filter-buttons">
<button class="filter-buttons-button" id='home'>Home</button>
<button class="filter-buttons-button" id='catalog'>Course Catalog</button>
<button class="filter-buttons-button" id='videos'>Videos</button>
<button class="filter-buttons-button" id='instructors'>Professional Climbers</button>
<button class="filter-buttons-button" id='live-courses'>Live Courses</button>
<button class="filter-buttons-button" id='community'>Mountain Project</button>
</div>
</div>
<style>
.np-catalog-header-wrapper {
display: block;
width: 80%;
margin: auto;
}
.filter-buttons {
display: flex;
flex-direction: row;
justify-content: space-evenly;
}
.filter-buttons-button {
background: none;
border: white 1px solid;
border-radius: 30px;
color: white;
padding: 15px 20px;
font-size: 18px;
cursor: pointer;
}
</style>
<script>
$('#home').click(function () { window.location.replace('/app') })
$('#catalog').click(function () { window.location.replace('/app/catalog') })
$('#videos').click(function () { window.location.replace('/app/videos') })
$('#instructors').click(function () { window.location.replace('/app/instructors') })
$('#live-courses').click(function () { window.location.replace('/app/live-courses') })
$('#community').click(function () { window.location.replace('/app/community') })
</script>