i want to create a new tag which should get some data from another page from kirby and display this information in another way on the site.
a short example.
/products/product-1/product.txt
title: Product 1
----
price: 49 $
/blog/a-new-product/article.txt
title: a new product arrived
----
text:
we have a new product in store.
marketing blabla
(product: product-1)
and this tag (product: product-1) should create a little html snippet inside my blog-post with contains the most important information about this new product directly from the product site.
i have tried this with a tag, but in a tag i couldn’t use $site->find() or something like this.