Reputation: 13
I Developed an ASP.Net MVC 5 application by using Visual Studio 2012. Now I want to integrate a .Net CMS in my project that supports MVC5, Web API and JSON responses, so I found that Piranha supports MVC 5, but I can't using it I want something good like tutorial to get started with, not the official web site.
Thanks.
Upvotes: 1
Views: 3940
Reputation: 2753
Piranha CMS is just a NuGet-package and does not contain any special project features like scaffolding views or generating code for you in your project.
If you're interested in how it works, take a look at the template files that are installed when you install the PiranhaCMSMvc package, but in short:
The page/post types you create in Piranha CMS merely defines what data the model should have, it does not care what you do with it, or where it's sent.
This very loose coupling between the content and the application and its views is why you can integrate Piranha CMS into an already existing application and just use it to store the information you want be dynamic. It is also why there's no themes or pre-generated views for Piranha CMS.
I hope this clarifies usage the mindset of Piranha CMS a bit!
Regards
Håkan
Upvotes: 5