---
title: "Important: The job list leaves the content element header to the layout"
manual: "Academic Bite Jobs"
version: "main"
source: "Changelog/2.4/Important-JobListLeavesTheHeaderToTheLayout.rst"
rendered: "2026-09-27T01:55:45+00:00"
---

# Important: The job list leaves the content element header to the layout {#important-1790323401}

## Description {#description}

A **Job list** content element renders through the content element
layout of the site, like any other content element. The layouts of
**EXT:fluid_styled_content** and of the bootstrap package render the
header and the subheader an editor enters, and the template of the plugin
rendered them a second time:

```html
<f:render partial="Header/All" arguments="{_all}" />
```

With an explicit header layout the header and the subheader appeared twice.
With the header layout **Default** the plugin left an empty
`<header></header>` element behind, because the header partial takes the
heading level for that layout from a setting the plugin settings did not carry.

The template now renders the header only when the site switches it on:

**TypoScript constants**

```typoscript
plugin.tx_academicbitejobs.renderContentElementHeader = 1
```

It is off by default.

The plugin settings now also carry `settings.defaultHeaderType`,
mapped from the constant `styles.content.defaultHeaderType` of
**EXT:fluid_styled_content**, so with the switch on the header layout
**Default** renders a heading. See
[The header of the content element](../../Configuration/General/Index.html#configuration-general-content-element-header).

## Impact {#impact}

On a site whose content element layout renders the header, the header of the
job list appears once, and the markup of the plugin no longer contains a
`<header>` element.

## Affected Installations {#affected-installations}

Installations whose content element layout renders **no** header - a site
package that renders the header in its element templates instead - lose the
header of the job list. Switch `renderContentElementHeader` on for
such a site.

Projects that copied `BiteJobs/List.html` keep rendering the header in
their copy. On a site whose layout renders the header, drop the
`<f:render partial="Header/All" … />` line from the copy; on any other
site, keep it or wrap it in the same condition as the shipped template:

```html
<f:if condition="{settings.renderContentElementHeader}">
    <f:render partial="Header/All" arguments="{_all}" />
</f:if>
```
