I’ve got a Blueprint where it would make sense to have a set of tabs. I’ve got the tabs working.
For the next evolution of the page, I want to have some content above the tabs, and some columns of content below the tabs.
Is this possible…?
Thanks!
series.yml
title: series
status:
draft:
label: Draft
text: The series is still in draft mode. It can only be seen by editors with Panel access.
unlisted:
label: In Review
text: The series is online and can be visited with the direct URL. The team must still give the final go to publish it.
listed:
label: Published
text: The series (and any Collections within it) can be viewed on the live site.
columns:
- width: 3/3
fields:
pageHeading:
type: headline
label: Inside this series
tabs:
wipCollections:
label: Works in progress
icon: draft
columns:
- width: 3/3
sections:
seriesCollectionsDrafts:
type: pages
label: Collections
template: collection
query: page.index(true).filterBy('status','draft')
status: draft
layout: cards
size: small
sortBy: modified desc
info: "{{ page.Publicationformat }}"
image:
cover: true
back: "linear-gradient(to bottom, rgba(255,255,255,0.5) 0%, rgba(240,240,240,1) 100%)"
empty: Add a collection
inReviewCollections:
label: In review
icon: status-unlisted
columns:
- width: 3/3
sections:
seriesCollectionsInReview:
type: pages
label: Collections
template: collection
query: page.index(true).filterBy('status','unlisted')
status: review
layout: cards
size: small
sortBy: modified desc
info: "{{ page.Publicationformat }}"
image:
cover: true
back: "linear-gradient(to bottom, rgba(255,255,255,0.5) 0%, rgba(240,240,240,1) 100%)"
publishedCollections:
label: Published
icon: status-listed
columns:
- width: 3/3
sections:
seriesCollectionsPublished:
type: pages
label: Collections
template: collection
query: page.index(true).filterBy('status','listed')
status: published
layout: cards
size: small
sortBy: modified desc
info: "{{ page.Publicationformat }}"
image:
cover: true
back: "linear-gradient(to bottom, rgba(255,255,255,0.5) 0%, rgba(240,240,240,1) 100%)"
columns:
- width: 3/3
seriesVolumes:
type: pages
label: Volumes
templates:
- volume
layout: list
size: small
sortBy: modified desc
limit: 5
image:
cover: true
back: "linear-gradient(to bottom, rgba(255,255,255,0.5) 0%, rgba(240,240,240,1) 100%)"
empty: No volumes yet