Portal

The portal feature allows you to transport sections of your template code to another part of the page.

@portal(pageStart)
//Code here will be transported to the top of the page before the open HTML tag.
@endportal
@portal(pageEnd)
//Code here will be transported to the bottom of the page after the end html tag.
@endportal
@portal(headStart)
//Code here will be transported to the top of the page head.
@endportal
@portal(headEnd)
//Code here will be transported to the bottom of the page head.
@endportal
@portal(bodyStart)
//Code here will be transported to the top of the page body.
@endportal
@portal(bodyEnd)
//Code here will be transported to the bottom of the page body.
@endportal

If you are linking and including scripts, you'll want to tell Elements to only include the link once (when multiple instances of the same component are on the page). To do that you can use the "includeOne argument.

@portal(headEnd, includeOnce: true)
//Code will only be included once when using multiple instances of the same component.
@endportal

Include once across multiple components.

@portal(headEnd, id: "com.realmacsoftware.alpine", includeOnce: true)
//Code will only be included once when using the same ID across multiple compoenents.
@endportal

Last updated

We are Realmac Software. We make nice things.