Zenjob Notes, and new Templates
This commit is contained in:
@ -0,0 +1,44 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user