I'm a complete newbie and am building a HTML5 app with PhoneGap which will present articles uploaded through a custom built CMS in a nice flipboard like manner. The app will present a nice image-heavy interface. When users's click on an image, the article content is loaded.
I will probably build the web backend with the Yii framework, since it's where my experience lies. The CMS will be accessible to a number of moderators who can upload articles. Each article simply has an image and text. General users will not have access to the articles through the web, but only through the app.
I presume I need to use HTTP get requests? Say an article on the cms is accessibe at "www.mydomain.com/article?id=7". If I hit this, I'm getting back all the unnecessary layouts and extra views a website uses.
Is the best way to build streamlined views which just return the image, and the content? So the url: "www.mydomain.com/mobile/article?id=7&type=image" would return just the image for article 7 and
"www.mydomain.com/mobile/article?id=7&type=text" would return the text.
I then use Jquery to create the pretty front page of the app by grabbing, say, 3 images, and hit the "text" links to load the content.
Is this the correct process? Or is there a better one?
