]> git.dabkitsch.com - jekyll-site.git/commitdiff
added topbar and some new sections
authorequilet <2237372+equilet@users.noreply.github.com>
Sat, 31 Dec 2022 03:55:00 +0000 (19:55 -0800)
committerequilet <2237372+equilet@users.noreply.github.com>
Sat, 31 Dec 2022 03:55:00 +0000 (19:55 -0800)
_includes/nav.html

index 3aa05a1b9c23a562069b122e45b735f2d5351234..b0f933276aa5dd8ebed0bb7359478b6bbc45ee7f 100644 (file)
@@ -1,25 +1,48 @@
-<h1 class="nav-title">Jeffrey M. Lubow</h1>
-<h2><a class="about" href="{{ site.url }}/about.html">about...</a></h2>
-
+<div class="flex-topbar">
+       <a class="about" href="{{ site.url }}/index.html">\about\</a>
+       <h1 class="nav-title">Jeffrey M. Lubow</h1>
+</div>
 <h2 class="nav-list-heading">⇲</h2>
 
-<h3 class="nav-cat">performance:</h3>
+<h3 class="nav-cat">jobs:</h3>
+<ul class="nav-list">
+       {% assign job_array = site.categories.job | sort: "title" %}
+       {% for post in job_array %}
+       <li><a href="{{ post.url }}">{{ post.title }}</a></li>
+       {% endfor %}
+</ul>
+
+<h3 class="nav-cat">research projects:</h3>
+<ul class="nav-list">
+       {% for post in site.categories.research %}
+       <li><a href="{{ post.url }}">{{ post.title }}</a></li>
+       {% endfor %}
+</ul>
+
+<h3 class="nav-cat">computer music design:</h3>
 <ul class="nav-list">
-       {%- for post in site.categories.performance -%}
+       {% for post in site.categories.art-tech %}
        <li><a href="{{ post.url }}">{{ post.title }}</a></li>
        {% endfor %}
 </ul>
 
-<h3 class="nav-cat">research:</h3>
+<h3 class="nav-cat">software releases:</h3>
 <ul class="nav-list">
-       {%- for post in site.categories.research -%}
+       {% for post in site.categories.software %}
        <li><a href="{{ post.url }}">{{ post.title }}</a></li>
        {% endfor %}
 </ul>
 
-<h3 class="nav-cat">technical assistant:</h3>
+<h3 class="nav-cat">pedagogy:</h3>
+<ul class="nav-list">
+       {% for post in site.categories.pedagogy %}
+       <li><a href="{{ post.url }}">{{ post.title }}</a></li>
+       {% endfor %}
+</ul>
+
+<h3 class="nav-cat">performance:</h3>
 <ul class="nav-list">
-       {%- for post in site.categories.art-tech -%}
+       {% for post in site.categories.performance %}
        <li><a href="{{ post.url }}">{{ post.title }}</a></li>
        {% endfor %}
 </ul>