Implementing our Team members section
The next area of our About Us page we will need to create is the display of our Team members listing. We will be taking an existing Drupal content type named Team and using Views to display the four team members.
In order for us to implement the Team members section, we will need to complete a series of steps as follows:
First, we will review the structural markup for our team members section in preparation for creating a new Drupal View.
Next, we will look at various methods to theme View content as we complete our Team Members display.
Finally, we will assign our custom View block to a new region and limit the page visibility to our About Us page.
Prepping our Team Member View
The Views module provides multiple ways of creating block displays, whether we are simply outputting the fields of a content type as an unordered list or relying on rendering a specific content type directly. In any case, it is best to start off by breaking down how the Team Members...