I'm wondering if can i create platform contains the few web pages (call them small) and one BIG web page. Each page is build on top of umbraco.
Each page is some kind of new page with some subject. And the BIG page has the own content + some content from the small pages.
There is not out-of-the box way of doing this, but it is rather easy to create endpoints that can provide this.
Creating a WebApi controller (https://our.umbraco.org/documentation/Reference/Routing/WebApi/) gives you access to all the umbraco seriveces / contexts so you can query all the content you need
Umbraco as Content delivery platform ?
I'm wondering if can i create platform contains the few web pages (call them small) and one BIG web page. Each page is build on top of umbraco. Each page is some kind of new page with some subject. And the BIG page has the own content + some content from the small pages.
Something like this
hi,
There is not out-of-the box way of doing this, but it is rather easy to create endpoints that can provide this.
Creating a WebApi controller (https://our.umbraco.org/documentation/Reference/Routing/WebApi/) gives you access to all the umbraco seriveces / contexts so you can query all the content you need
So Umbraco can consume REST from other Umbraco. ? It don't have to be Angular or something ?
Huh? In theory yes, but as a i wrote, you have to create the endpoints yourself.
The WebApi controller is running on the umbraco-site. Just as normal umbraco pages, but delivering json or XML, or whatever you build in to it.
You have to create the controller.
is working on a reply...