The goal is to have a home page that lists the latest items (posts/photos/whatever) from several very different sites. I’ve already built one of these sites, but now my question is would it be better to rebuild under a single Kirby install or is it possible to pull posts from different Kirby sites to display on a central home page?
Each site will likely have custom routes and config options which somewhat concerns me. I’m the only user so one panel vs several doesn’t bother me either way.
You can do that via remote requests to routes or content representations on each single site.
Ok I will look into those, content representations sound like what I’d need. In your opinion, obviously without any knowledge of how the sites are built, is there any drawback to pulling the posts that way?
I’d make sure to limit access by IP or so, so that the endpoint is not publicly available, but apart from that, no, I don’t think so. Caching the remote result makes sense as well, to prevent calls to the endpoint with page request.
1 Like