+
{{ section.content | safe }}
diff --git a/templates/partials/header.html b/templates/partials/header.html
index 92f8a06..396097a 100644
--- a/templates/partials/header.html
+++ b/templates/partials/header.html
@@ -26,6 +26,7 @@
}
function toggleHamburger() {
+ console.log("toggling hamburger", hamburgerShown)
if (hamburgerShown) {
hideHamburger();
hamburgerShown = false;
@@ -43,6 +44,7 @@
function hideMenu(menuName) {
var menuId = menuName + (isMobile ? '-mobile-menu' : '-menu');
+ console.log(menuId)
document.getElementById(menuId).className = document.getElementById(menuId).className.replace("ease-out opacity-1 -translate-y-0", "hidden ease-in opacity-0 -translate-y-1");
}
@@ -58,7 +60,7 @@
document.getElementById('hamburger').className = "hidden absolute z-20 top-0 inset-x-0 transition transform origin-top-right md:hidden";
document.getElementById('hamburger-btn').className = "inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:bg-gray-100 focus:text-gray-500 transition duration-150 ease-in-out";
document.getElementById('close-hamburger-btn').className = "hidden md:hidden inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:bg-gray-100 focus:text-gray-500 transition duration-150 ease-in-out";
- hideMenu();
+ if (displayedMenu !== "") { hideMenu(displayedMenu); }
}
window.onload = function(){
diff --git a/templates/roles/list.html b/templates/roles/list.html
index f628a84..7330b1f 100644
--- a/templates/roles/list.html
+++ b/templates/roles/list.html
@@ -1,4 +1,7 @@
{% extends "index.html" %}
{% block content %}
-{% endblock content %}
\ No newline at end of file
+
+{{ terms }}
+
+{% endblock content %}
diff --git a/templates/shortcodes/row.html b/templates/shortcodes/row.html
index 8cc8242..c7fa868 100644
--- a/templates/shortcodes/row.html
+++ b/templates/shortcodes/row.html
@@ -18,12 +18,12 @@ Parameters:
{% set classes = classes ~ " lg:items-center" %}
{% endif %}
-{% set column_classes = "flex-1 lg:mx-8" %}
+{% set column_classes = "flex-1 md:mx-8" %}
{% if style %}
{% if "lean" in style %}
- {% set classes = "relative flex flex-col lg:flex-row items-baseline w-full" %}
+ {% set classes = "relative flex flex-col md:flex-row items-baseline w-full" %}
{% set column_classes = "flex-1 m-4 md:m-0" %}
{% endif %}