Media DB for better filehandling

Hi all,

quick question, is there any solution that I can you use the same image/files in another page?
So I’m looking for a Media DB, where I have all my images/files/videos inside.

I was playing the last hours with symlinks, but still now I don’t have a handy answer.

Best David

Either you use global files (coming with 2.1 which is currently in public beta: https://gist.github.com/bastianallgeier/061ddd007d5985ae28ca). To grab them in your templates, use $site->files().

Or you add a separate page “media” for example, where you store all of your files… then you can use page("media")->files() in your templates.

thanks - I will try it out.