<head>
+
+ <!-- mainly here to include fonts, make initializations, etc -->
+
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="{{ "/style-layout.css" | prepend: site.baseurl }}">
<link rel="stylesheet" href="{{ "/style-colors.css" | prepend: site.baseurl }}">
<link rel="shortcut icon" type="image/jpg" href="/assets/favicon.jpg">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@100&display=swap" rel="stylesheet">
- <link href="https://fonts.googleapis.com/css2?family=Oswald&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poiret+One&display=swap" rel="stylesheet">
+
+ <!-- not in use -->
<link href="https://fonts.googleapis.com/css2?family=Heebo&display=swap" rel="stylesheet">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
-<header class="nav">
- <h2><a href="/" > {{ site.title }} </a></h2>
-</header>
+<h1 class="nav-title">Jeffrey M. Lubow</h1>
+<h2><a href="{{ site.baseurl }}/{{ site.about }}">about</a></h2>
+
+<h2 class="nav-list-heading">nav:</h2>
+
+<h3 class="nav-cat">performance:</h3>
+<ul class="nav-list">
+ {%- for post in site.categories.performance -%}
+ <li><a href="{{ post.url }}">{{ post.title }}</a></li>
+ {% endfor %}
+</ul>
+<h3 class="nav-cat">research:</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">artist's technical assistant:</h3>
+<ul class="nav-list">
+ {%- for post in site.categories.art-tech -%}
+ <li><a href="{{ post.url }}">{{ post.title }}</a></li>
+ {% endfor %}
+</ul>
{%- if site.posts.size > 0 -%}
-<h2 class="post-list-heading">Projects</h2>
+<h2 class="post-list-heading">Posts in chronological order:</h2>
<ul class="post-list">
{%- for post in site.posts -%}
</li>
{%- endfor -%}
</ul>
+
+
{%- endif -%}