-
Notifications
You must be signed in to change notification settings - Fork 13
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
Showing
22 changed files
with
198 additions
and
153 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<footer class="footer mt-2 mb-2 pb-s pt-s w-main"> | ||
<footer class="footer mt-2 pt-4"> | ||
<div class="container flex"> | ||
<div class="w-50"> | ||
<div class="w-100"> | ||
<p><a href="https://twitter.com/{{ site.twitter_username }}" target="_blank" rel="noopener">@{{ site.twitter_username }}</a></p> | ||
|
||
<p><a href="{% link code-of-conduct.md %}">Code of Conduct</a>, email <a href="mailto:[email protected]">[email protected]</a></p> | ||
|
@@ -10,3 +10,17 @@ | |
</div> | ||
</div> | ||
</footer> | ||
<pre class="font-display-mono aliased text-10 mt-0 max-w-prose overflow-scroll inline-flex mb-0"> | ||
`::` | ||
/ | ||
` `;:` | ||
_ | ||
_(_)_ wWWWw _ | ||
@@@@ (_)@(_) vVVVv _ @@@@ (___) _(_)_ | ||
@@()@@ wWWWw (_)\ (___) _(_)_ @@()@@ Y (_)@(_) | ||
@@@@ (___) `|/ Y (_)@(_) @@@@ \|/ (_)\ | ||
/ Y \| \|/ /(_) \| |/ | | ||
\ | \ |/ | / \ | / \|/ |/ \| \|/ | ||
jgs \\|// \\|/// \\\|//\\\|/// \|/// \\\|// \\|// \\\|// | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^</pre> | ||
|
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,40 +1,21 @@ | ||
<header class="header w-100 top-0 mb-2 font-display font-medium"> | ||
<div class="container flex relative w-100 flex-align-center flex-justify-space-between"> | ||
{% assign currentTitle = page.title %} | ||
{% assign current = page.url %} | ||
{% assign sorted_pages = site.pages | sort: "order" %} | ||
{% assign sub_pages = '' | split: '' %} | ||
|
||
<header class="header w-100 top-0 mb-2"> | ||
<div class="container relative w-100"> | ||
<a class="logo" href="{{ "/" | relative_url }}" rel="home" title="{{ site.title }}"> | ||
{% include logo/soon-logo.svg %} | ||
</a> | ||
<input class="menu-btn none" type="checkbox" id="menu-btn" /> | ||
<label class="menu-icon none text-white bg-black" for="menu-btn"><span>Menu</span></label> | ||
<label class="menu-icon none text-white bg-black rounded font-mono antialiased p-1 no-underline outlined" for="menu-btn"><span>Menu</span></label> | ||
<nav class="nav w-100" aria-label="Primary Menu"> | ||
<ul class="menu flex w-100 gap-4 text-center list-none"> | ||
{% assign currentTitle = page.title %} | ||
{% assign current = page.url %} | ||
{% assign sorted_pages = site.pages | sort: "order" %} | ||
{% for page in sorted_pages %} | ||
{% if page.order > 0 and page.parent == nil %} | ||
<li> | ||
<a class="nav-item {% if current != '/' %}{% if page.url == current %}active{% endif %}{% endif %}" | ||
href="{% if page.content.size > 1 %}{{ page.url | relative_url }}{% else %}#{% endif %}" aria-label="{{ page.title }}"> | ||
{% if page.titleDisplay %}{{ page.titleDisplay }}{% else %}{{ page.title }}{% endif %} | ||
</a> | ||
{% assign sorted2_pages = site.pages | sort: "order" %} | ||
<ul class="nav-item-sub" aria-hidden="true"> | ||
{% if page.title == "Previous years" %} | ||
{%- for year in site.data.previous-years -%} | ||
<li><a href="{{ year.redirect_to }}" aria-label="{{ year.titleDisplay }}" target="_blank">{{ year.titleDisplay }}</a></li> | ||
{%- endfor -%} | ||
{% else %} | ||
{%- for page2 in sorted2_pages -%} | ||
{% if page.title == page2.parent %} | ||
<li><a class="{% if current != '/' %}{% if page2.url == current %}active{% endif %}{% endif %}" href="{% if page2.redirect_to %}{{ page2.redirect_to }}{% else %}{{ page2.url }}{% endif %}" aria-label="{% if page2.titleDisplay %}{{ page2.titleDisplay }}{% else %}{{ page2.title }}{% endif %}">{% if page2.titleDisplay %}{{ page2.titleDisplay }}{% else %}{{ page2.title }}{% endif %}</a></li> | ||
{% endif %} | ||
{%- endfor -%} | ||
{% endif %} | ||
</ul> | ||
</li> | ||
{% endif %} | ||
{% endfor %} | ||
</ul> <!-- .nav --> | ||
<pre class="leading-normal"><ul class="menu w-100 gap-4 list-none"><a class="hover-ornament {% if current == '/' %}active{% endif %}" href="{{ "/" | relative_url }}" rel="home" title="{{ site.title }}">ournetworks.ca</a>{% for page in sorted_pages %}{% if page.order > 0 and page.parent == nil %}<li>{% if forloop.last %}└── {% else %}├── {% endif %}<a class="hover-ornament {% if current != '/' %}{% if page.url == current %}active{% endif %}{% endif %}" | ||
href="{% if page.content.size > 1 %}{{ page.url | relative_url }}{% else %}#{% endif %}" aria-label="{{ page.title }}">{% if page.titleDisplay %}{{ page.titleDisplay }}{% else %}{{ page.title }}{% endif %}</a>{% assign sorted2_pages = site.pages | sort: "order" %}<ul class="nav-item-sub">{% if page.title == "Previous years" %}{%- for year in site.data.previous-years -%}<li>│ {% if forloop.last %}└── {% else %}├── {% endif %}<a class="hover-ornament" href="{{ year.redirect_to }}" aria-label="{{ year.titleDisplay }}" target="_blank">{{ year.titleDisplay }}</a></li> | ||
{%- endfor -%}{% else %}{%- for page2 in sorted2_pages -%}{% if page.title == page2.parent %}{% assign sub_pages = sub_pages | push: page2 %} | ||
{%- for page in sub_pages -%} | ||
<li>│ {% if forloop.last %}└── {% else %}├── {% endif %}<a class="hover-ornament {% if current != '/' %}{% if page.url == current %}active{% endif %}{% endif %}" href="{% if page.redirect_to %}{{ page.redirect_to }}{% else %}{{ page.url }}{% endif %}" aria-label="{% if page.titleDisplay %}{{ page.titleDisplay }}{% else %}{{ page.title }}{% endif %}">{% if page.titleDisplay %}{{ page.titleDisplay }}{% else %}{{ page.title }}{% endif %}</a></li>{% endfor %}{% endif %}{%- endfor -%}{% endif %}</ul></li>{% endif %}{% endfor %}</ul></pre><!-- .nav --> | ||
</nav> | ||
</div> | ||
</header> |
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
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
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
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
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
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
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
Oops, something went wrong.