> For the complete documentation index, see [llms.txt](https://overleaf-pro.ayaka.space/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://overleaf-pro.ayaka.space/on-premises/nl/configuratie/overleaf-toolkit/branding.md).

# Huisstijl

### Koptekst <a href="#header" id="header"></a>

In deze sectie behandelen we hoe u belangrijke elementen van uw on-premises-instantie kunt personaliseren. U kunt de sitetitel, navigatielinks, koptekst, voettekst en het logo aanpassen aan uw voorkeuren.

### Sitetitel <a href="#site-title" id="site-title"></a>

De titel van de navigatiebalk kan worden aangepast met de `OVERLEAF_NAV_TITLE` omgevingsvariabele, deze tekst wordt gebruikt in de linkerbovenhoek van de navigatie als er geen logo is ingesteld.

```bash
# toevoegen aan config/variables.env
OVERLEAF_NAV_TITLE=Onze Overleaf-instantie
```

## Logo

U kunt een aangepast logo toevoegen in plaats van tekst te gebruiken door de omgevingsvariabele in te stellen `OVERLEAF_HEADER_IMAGE_URL`. Deze waarde moet verwijzen naar een extern gehost afbeeldingsbestand.

Toevoegen aan config/variables.env:

{% code title="config/variables.env" %}

```bash
# toevoegen aan config/variables.env
OVERLEAF_HEADER_IMAGE_URL=https://mysite.somewhere.com/img/logo.png
```

{% endcode %}

## Navigatielinks in de koptekst

Extra navigatie-items kunnen aan de navigatiekop worden toegevoegd door de `OVERLEAF_HEADER_EXTRAS` omgevingsvariabele in te stellen op een JSON-array met objecten. Bijvoorbeeld:

{% code overflow="wrap" %}

```json
[\
  {\
    "text": "Een voorbeeldlink",\
    "url": "http://example.com/somelink",\
    "class": "subdued",\
    "only_when_logged_out": true\
  },\
  {\
    "text": "Hulp",\
    "class": "subdued",\
    "dropdown": [\
      {\
        "text": "Documentatie",\
        "url": "/learn"\
      },\
      {\
        "text": "Neem contact op met beheerder",\
        "url": "http://example.com/contact"\
      }\
    ]\
  }\
]
```

{% endcode %}

Voeg de geëscapede JSON-vorm toe aan toolkit/variables.env:

{% code title="toolkit/variables.env" overflow="wrap" %}

```bash
# toevoegen aan toolkit/variables.env
OVERLEAF_HEADER_EXTRAS=[{"text":"Een voorbeeldlink","url":"http://example.com/somelink","class":"subdued","only_when_logged_out":true},{"text":"Hulp","class":"subdued","dropdown":[{"text":"Documentatie","url":"/learn"},{"text":"Neem contact op met beheerder","url":"http://example.com/contact"}]}]
```

{% endcode %}

## Voetteksten

Het is mogelijk om zowel de linker- als de kleinere rechtervoettekst aan te passen (te vinden op pagina's zoals `/project`) met behulp van de omgevingsvariabelen `OVERLEAF_LEFT_FOOTER` en `OVERLEAF_RIGHT_FOOTER`. Beide verwachten een array van JSON-objecten die zullen worden ingevoegd.

Beide verwachten een array met JSON die zal worden ingevoegd.

```json
[\
  {\
    "text": "Dit is een voorbeeldtekst voor een voettekstvermelding!"\
  },\
  {\
    "text": "Dit is een voorbeeldlink voor de URL-voettekst!", "url" : "/my-first-link.htm"\
  }\
]
```

{% hint style="info" %}
Bij gebruik van `tekst` alleen, mag het geen HTML bevatten, omdat de waarde als onbewerkte tekst wordt weergegeven.
{% endhint %}

Deze gegevens moeten geldige JSON zijn om te werken, met geëscapete aanhalingstekens wanneer ze als omgevingsvariabele worden doorgegeven.

{% code title="config/variables.env" overflow="wrap" %}

```bash
# toevoegen aan config/variables.env
OVERLEAF_LEFT_FOOTER=[{"text": "Dit is een voorbeeldtekst voor een voettekstvermelding!"}]
OVERLEAF_RIGHT_FOOTER=["text": "Dit is een voorbeeldlink voor de URL-voettekst!", "url" : "/my-first-link.htm"]
```

{% endcode %}

{% hint style="info" %}
Naast `tekst` en `url`, accepteert het JSON-object ook de eigenschappen `class` en `label` voor extra aanpassing.
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://overleaf-pro.ayaka.space/on-premises/nl/configuratie/overleaf-toolkit/branding.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
