--- title: Showcase layout: layouts/base.njk --- {% import "components/buttons.njk" as Buttons %} {% macro ShowcaseCard(image, title, description, showcaseURL) %}
Website screenshot of {{ title }}

{{ title }}

{{ description }}

{{ Buttons.PrimaryButton("Check It Out", showcaseURL, "fa-regular fa-arrow-up-right-from-square", "_blank") }}
{% endmacro %}

{{ 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 %}