-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ab3cef2
commit 0320a38
Showing
3 changed files
with
117 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
<nav class="navbar is-black" role="navigation" aria-label="main navigation" id="navbar"> | ||
<div class="container"> | ||
|
||
<div class="navbar-brand"> | ||
<a class="navbar-item" | ||
href="{% if page.layout == 'default' %}{{site.url}}{{site.baseurl}}/#{% else %}{{site.url}}{{site.baseurl}}/{% endif %}"> | ||
<img src="https://cdn.scyted.tv/assets/scytedtv/logos/scytedtv-logo.png" alt="ScytedTV Studios"> | ||
</a> | ||
<div class="navbar-burger" data-target="navbar-menu"> | ||
<span></span> | ||
<span></span> | ||
<span></span> | ||
</div> | ||
</div> | ||
|
||
|
||
<div class="navbar-menu has-background-black" id="navbar-menu"> | ||
<div class="navbar-end"> | ||
<a class="navbar-item {% if page.layout == 'default' %}is-active{% endif %}" | ||
href="{% if page.layout == 'default' %}{{site.url}}{{site.baseurl}}/#{% else %}{{site.url}}{{site.baseurl}}/{% endif %}">Home</a> | ||
<!-- <a class="navbar-item {% if page.type == 'resources' %}is-active{% endif %}" | ||
href="{{site.url}}{{site.baseurl}}/resources">Resources</a> --> | ||
<!-- <a class="navbar-item {% if page.type == 'discussion' %}is-active{% endif %}" | ||
href="{{site.url}}{{site.baseurl}}/discussions">DISCUSSIONS [beta]</a> --> | ||
<a class="navbar-item {% if page.type == 'team' %}is-active{% endif %}" | ||
href="{{site.url}}{{site.baseurl}}/team">Team</a> | ||
|
||
<a class="navbar-item {% if page.type == 'schedule' %}is-active{% endif %}" | ||
href="{{site.url}}{{site.baseurl}}/schedule">Schedule</a> | ||
<!-- <a class="navbar-item {% if page.type == 'blog' %}is-active{% endif %}" | ||
href="{{site.url}}{{site.baseurl}}/news">News</a> --> | ||
|
||
{% include channels-dropdown.html %} | ||
|
||
<style> | ||
.highlight { | ||
background-color: #837e49; | ||
color: #000 | ||
} | ||
</style> | ||
|
||
<a class="navbar-item highlight {% if page.show == 'tindalos' %}is-active{% endif %}" | ||
href="{{site.url}}{{site.baseurl}}/show/tindalos">Tindalos</a> | ||
|
||
<!-- <a class="navbar-item highlight {% if page.type == 'blog' %}is-active{% endif %}" | ||
href="https://news.scyted.tv/" target="_blank">News</a> --> | ||
|
||
<!-- <a class="navbar-item highlight {% if page.type == 'auditions' %}is-active{% endif %}" | ||
href="{{site.url}}{{site.baseurl}}/auditions">Auditions</a> --> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
</nav> | ||
<script> | ||
document.addEventListener('DOMContentLoaded', function () { | ||
/* Get all "navbar-burger" elements */ | ||
var $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0); | ||
/* Check if there are any navbar burgers */ | ||
if ($navbarBurgers.length > 0) { | ||
/* Add a click event on each of them */ | ||
$navbarBurgers.forEach(function ($el) { | ||
$el.addEventListener('click', function () { | ||
/* Get the target from the "data-target" attribute */ | ||
var target = $el.dataset.target; | ||
var $target = document.getElementById(target); | ||
/* Toggle the class on both the "navbar-burger" and the "navbar-menu" */ | ||
$el.classList.toggle('is-active'); | ||
$target.classList.toggle('is-active'); | ||
}); | ||
}); | ||
} | ||
}); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
layout: compress | ||
--- | ||
|
||
<!DOCTYPE html> | ||
<html> | ||
{% include head.html %} | ||
|
||
<body> | ||
{% include navbar-alt.html %} | ||
|
||
{{ content }} | ||
|
||
<!--Footer begins here--> | ||
{% include footer-alt.html %} | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
--- | ||
title: SimplyNetwork | ||
layout: simplynetwork | ||
--- | ||
|
||
<div data-featurebase-embed></div> | ||
|
||
<script>!(function (e, t) { const a = "featurebase-sdk"; function n() { if (!t.getElementById(a)) { var e = t.createElement("script"); (e.id = a), (e.src = "https://do.featurebase.app/js/sdk.js"), t.getElementsByTagName("script")[0].parentNode.insertBefore(e, t.getElementsByTagName("script")[0]) } } "function" != typeof e.Featurebase && (e.Featurebase = function () { (e.Featurebase.q = e.Featurebase.q || []).push(arguments) }), "complete" === t.readyState || "interactive" === t.readyState ? n() : t.addEventListener("DOMContentLoaded", n) })(window, document);</script> | ||
|
||
<script> | ||
Featurebase('embed', { | ||
organization: 'simplynetwork', | ||
|
||
basePath: null, | ||
|
||
theme: 'dark', | ||
initialPage: 'Board', | ||
hideMenu: true, | ||
hideLogo: true, | ||
filters: null, | ||
jwtToken: null, | ||
metadata: null, | ||
locale: "en" | ||
}) | ||
</script> |