You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 26, 2021. It is now read-only.
Is it possible to list two or more content types on one page?
Lets say I have events and news content types and I want both of them listed on one page.
The text was updated successfully, but these errors were encountered:
One better suggestion, you can have on content_type called page for example and inside of it, you have a reference field that points to either event content_type or news content_type. so this way you can specify one content_type: page and you can display content of both events and news
and inside you template you check if the reference name for example is 'event' you display something and if the name is news you display something else
{{#if fields.tage.name === 'events'}}
// display events data
{{/if}}
Is it possible to list two or more content types on one page?
Lets say I have
events
andnews
content types and I want both of them listed on one page.The text was updated successfully, but these errors were encountered: