> For the complete documentation index, see [llms.txt](https://ayakaleaf-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://ayakaleaf-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 onderdelen van uw on-premises instantie kunt personaliseren. U kunt de sitetitel, navigatielinks, koptekst, voettekst en het logo naar wens aanpassen.

### 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 linksboven in de navigatie gebruikt 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 navigatiekoptekst worden toegevoegd door de `OVERLEAF_HEADER_EXTRAS` omgevingsvariabele in te stellen op een JSON-array van objecten. Bijvoorbeeld:

{% code overflow="wrap" %}

```json
[\
  {\
    "text": "Een link",\
    "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 de beheerder",\
        "url": "http://example.com/contact"\
      }\
    ]\
  }\
]
```

{% endcode %}

Voeg de ge-escapete 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 link","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 de beheerder","url":"http://example.com/contact"}]}]
```

{% endcode %}

## Voetteksten

Het is mogelijk om zowel de linker- als de kleinere rechtervoettekst (te vinden op pagina's zoals `/project`) aan te passen 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 van JSON die zal worden ingevoegd.

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

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

Deze gegevens moeten geldige JSON zijn om te werken, waarbij aanhalingstekens moeten worden ge-escapet wanneer ze via een 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 de voettekst!"}]
OVERLEAF_RIGHT_FOOTER=["text": "Dit is een voorbeeld-URL-voettekstlink!", "url" : "/my-first-link.htm"]
```

{% endcode %}

{% hint style="info" %}
Naast `text` en `url`, de JSON-object accepteert ook de eigenschappen `class` en `label` voor extra aanpassingen.
{% 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://ayakaleaf-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.
