---js const eleventyNavigation = { key: "Home", order: 1 }; const numberOfLatestPostsToShow = 5; ---

Kathleen Fitzpatrick

Associate Dean for Research and Graduate Studies
University Distinguished Professor of English and Digital Humanities
College of Arts and Letters, Michigan State University
Director, Knowledge Commons.

Author, Leading Generously: Tools for Transformation (Hopkins Press, 2024) and Generous Thinking: A Radical Approach to Saving the University (Hopkins Press, 2019).

You can find me on hcommons.social and on Github.


{% set postsCount = collections.posts | length %} {% set latestPostsCount = postsCount | min(numberOfLatestPostsToShow) %}

Latest Post{% if latestPostsCount != 1 %}s{% endif %}

{% set postslist = collections.posts | head(-1 * numberOfLatestPostsToShow) %} {% set postslistCounter = postsCount %} {% include "postslist.njk" %} {% set morePosts = postsCount - numberOfLatestPostsToShow %} {% if morePosts > 0 %}

{{ morePosts }} more post{% if morePosts != 1 %}s{% endif %} can be found in the archive.

{% endif %} {# List every content page in the project #} {# #}