Hi all, I need to create some views (I know how to make it) but I have a questions about performance (and maintenance). All my views need to create some little piece of HTML with title, image (imagecached), little description, link to the node. All this "fields" will be contained in a <div class="mystyle_for_this_div"></div>.
We know that view's "Row Styles" can be "Fields" or "Node". In a case like this one is better to use fields or node ? If I choose "Fields" I may create one {template}.tpl.php file for each "fields" (title will be in a <h1>, little description will be in a <p>, etc etc). If I choose "Node" I may create only one node-view-MYVIEWNAME.tpl.php that include the HTML tags that I need.
I think that in this case the better solution is node-view file. Is this correct ?
Tnx.