I've created my own theme in Drupal 7, and I would like to use the core module "Forum" in my website. Here is what I have done so far:
- Enabled "Forum" module in Modules
- Created a region called "forum" in .info file
- Assigned blocks "Active forum topics" and "New forum topics" to region "forum"
- Created a container and forum under /admin/structure/forum
- Created a page template "page--page-forum.tpl.php", in that template I render "forum" region
- And my page where the "forum" is rendered shows "Active forum topics" and "Forum", 2 lines, text only, nothing else.
From my observation the page doesn't really hooks the module templates, such as "forums.tpl.php", "forum-list.tpl.php", "forum-topic-list.tpl.php", etc, which are stored in /modules/forum
So my question is how can I implement the "forum" module in my own theme?