I've been working with Drupal for a while and am quite familiar with many of the modules. I'm trying to use Views and Panels to create dynamic pages, but I'm uncertain about the correct logic.
I've set up a Views Pane which I'm showing through a panel. The same basic layout and content are used on four different pages, in my case "Web Design", "Design", "Translation" and "3D Design". I just want to change the content, perhaps based on taxonomy, for each page.
Should I :
1) Set up four different Views Panes, one for each page I want to create, and then set up four Panels each pulling in a View?
2) Set up four different Views Panes, one for each page I want to create, and then set up one Panel that sends a (taxonomy?) argument to the view?
3) Set up one Views Panes and send arguments from one Panel?
...
1) Seems unsatisfactory, since I would need to maintain eight different elements.
2) Seems better, with only five different elements to maintain, but how can one panel generate four arguments. I'm guessing the argument has to be sent through the URL once a link is clicked, but how is this achieved? How can I generate four URLs with just one Panel?