---
title: Showcase
layout: layouts/base.njk
---
{% import "components/buttons.njk" as Buttons %}
{% macro ShowcaseCard(image, title, description, showcaseURL) %}
{{ title }}
Apps using PocketHost
{# showcase comes from the "_data/showcase.json" global file #}
{% for item in showcase %}
{{ ShowcaseCard(item.image, item.title, item.description, item.url) }}
{% endfor %}