Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion _layouts/posts_gallery.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,12 @@


{% assign entries_layout = page.entries_layout | default: 'list' %}
{% assign postsByYear = site.posts | where_exp: "item", "item.hidden != true" | group_by_exp: 'post', 'post.date | date: "%Y"' %}
{% assign postsByYear = site.posts
| where_exp: "item", "item.hidden != true",
| where_exp: "item", "item.type != 'event'",
| group_by_exp: 'post', 'post.date ,
| date: "%Y"'
%}
{% for year in postsByYear %}
<section id="{{ year.name }}" class="taxonomy__section">
<h2 class="archive__subtitle">{{ year.name }}</h2>
Expand Down
2 changes: 1 addition & 1 deletion _posts/events/2025-10-02-workshop-document-your-package.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---
e---
layout: single
title: "Build Documentation That Gets Used: A 2-Hour Interactive Workshop for Python Package Maintainers"
excerpt: "Stop writing documentation that nobody reads. Learn the strategic framework behind great documentation and walk away with templates, checklists, and a clear plan to transform your package's documentation."
Expand Down
Loading