45 lines
1.7 KiB
Plaintext
45 lines
1.7 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='projects'>Projects</button>
|
|
<button class="filter-buttons-button" id='video'>Video Tutorials</button>
|
|
<button class="filter-buttons-button" id='webinar'>Webinars</button>
|
|
<button class="filter-buttons-button" id='article' style="opacity: 0.3">Articles</button>
|
|
<button class="filter-buttons-button" id='discover'>Discover</button>
|
|
<button class="filter-buttons-button" id='community'>Community</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') })
|
|
$('#projects').click(function () { window.location.replace('https://app.cameraiq.com/login/?redirect_uri=%2Fprojects%2F') })
|
|
$('#video').click(function () { window.location.replace('/app/videos') })
|
|
$('#webinar').click(function () { window.location.replace('/app/training_events') })
|
|
$('#discover').click(function () { window.location.replace('/catalog') })
|
|
$('#community').click(function () { window.location.replace('/app/community') })
|
|
</script> |