From f41ea6608f53710f25e9df8753c4952e819db08f Mon Sep 17 00:00:00 2001 From: Kevin Lin <kevinl@cs.uw.edu> Date: Tue, 20 Apr 2021 09:23:54 -0700 Subject: [PATCH] staff.md: Update to minimal layout --- staff.md | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/staff.md b/staff.md index 3816fa5..4e846d5 100644 --- a/staff.md +++ b/staff.md @@ -1,24 +1,23 @@ --- -layout: page +layout: minimal title: Staff -description: A listing of all the course staff members. +description: &desc All the teaching and learning assistants. +summary: *desc +parent: CSE 373 --- -# Staff +# {{ page.title }} +{: .no_toc .mb-2 } -## Instructors +{{ page.description }} +{: .fs-6 .fw-300 } {% assign instructors = site.staffers | where: 'role', 'Instructor' %} {% for staffer in instructors %} {{ staffer }} {% endfor %} -{% assign teaching_assistants = site.staffers | where: 'role', 'Teaching Assistant' %} -{% assign num_teaching_assistants = teaching_assistants | size %} -{% if num_teaching_assistants != 0 %} -## Teaching Assistants - +{% assign teaching_assistants = site.staffers | where: 'role', 'Teaching Assistant' | sort: 'section' %} {% for staffer in teaching_assistants %} {{ staffer }} {% endfor %} -{% endif %} -- GitLab