Skip to content

Commit

Permalink
Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
LoydOsborne committed Nov 20, 2024
1 parent ab3cef2 commit 0320a38
Show file tree
Hide file tree
Showing 3 changed files with 117 additions and 0 deletions.
74 changes: 74 additions & 0 deletions _includes/navbar-alt.html
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>
18 changes: 18 additions & 0 deletions _layouts/simplynetwork.html
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>
25 changes: 25 additions & 0 deletions simplynetwork.md
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>

0 comments on commit 0320a38

Please sign in to comment.