DavidB
DavidB

Reputation: 2596

Grouping and querying content in Umbraco

I am attempting to set up a shared content repository in Umbraco 7. Ideally I would like something like:

ParentGroup
--SubGroup
----contentItem

I would like this structure and then I would like sub sites to be able to pick and choose which content they use, whilst keeping the grouping. I've looked at the multi node tree picker and this looks promising.

I am struggling however with how to organise the content into groups, a group would really be a text label, do I just create a content type without a template for this or is there a better way.

Upvotes: 0

Views: 84

Answers (1)

Mark
Mark

Reputation: 3271

I think creating a document type without a template is the way to go. Every content item in the content tree is defined by it's documenttype and it's perfectly reasonable that not every content item translates directly to a page, thus not having a template.

Upvotes: 2

Related Questions