I have views, og, excerpt and category modules. I wish to change the layout of a teaser view I have created. I've looked at "Theming in Views" documentation, and don't see anything that shows me specifically what I want to do.
The closest I've come are these two comments: http://drupal.org/node/42597#comment-136896 and http://drupal.org/node/42597#comment-162971, but neither one shows exactly how to construct the view layout.
Essentially, I want a teaser view that displays like this:
Node Title (links to content)
Date Created | Group Title | # Comments
I see this code in the views.module, but it doesn't give me a clue as to how the effect the changes I need:
/**
* Display the nodes of a view as teasers.
*/
function theme_views_view_teasers($view, $nodes, $type) {
return views_theme('views_view_nodes', $view, $nodes, $type, true);
}
Could someone give me some guidance on creating my own teaser view layout?
Thanks!
-ron