---
layout: default
---
   {{ page.name }}
  {{ page.name }}
  {{ content }}
{% assign filtered_posts = site.posts | where: 'publisher', page.short_name %}
{% if filtered_posts and filtered_posts.size != 0 %}
Posts
  {% for post in filtered_posts %}
    - {{ post.date | date_to_string }} {{ post.title }}{% endfor %}
{% endif %}
{% assign filtered_plugins = site.plugins | where: 'publisher', page.short_name %}
{% if filtered_plugins and filtered_plugins.size != 0 %}Plugins
  {% for plugin in filtered_plugins %}
    
    - {{ plugin.title }}{% endfor %}
{% endif %}