Authors List

Make sure the Authors Module is installed.
Create a new page to display your list on.
Select a Page Template for your page.
Create a new Authors List Layout, or install one using the SiteBuilder Module. A list layout should:
Be stored in the code editor folder: layouts/modules/module_6/<layout_name>/list/
Contain at least a wrapper.liquid and an item.liquid file.
The wrapper file should contain the code below where it should loop over each list item and output the author item.liquid file:
{%- include 'modules/siteglide_system/get/get_items', item_layout: 'item' -%}The item file should contain the fields needed to display information about a specific author. You can check available data by outputting the
thisobject as JSON using{{this}}.
Add a Liquid include tag to the page:
For Studio Pages either:
If you created a layout using the SiteBuilder module version >= 4.19.1, you can add as a dynamic section to your page.
Create an ordinary static section and add the following code inside:
{%- include 'module', id: '6', layout: '<layout_name>', per_page: '20', show_pagination: 'true', sort_type: 'properties.name', sort_order: 'asc' -%}
For ordinary Pages, add the following code:
{%- include 'module', id: '6', layout: '<layout_name>', per_page: '20', show_pagination: 'true', sort_type: 'properties.name', sort_order: 'asc' -%}
Last updated
Was this helpful?

