Revision aca1ca33620875e1c23896b2b37a1eccfe867a4e authored by Anthony Rimet on 11 October 2021, 15:23:15 UTC, committed by Anthony Rimet on 11 October 2021, 15:23:15 UTC
1 parent 361530c
Raw File
FAQ.md
# Frequently Asked Questions

## Why my custom static pages don't work?

When a custom layout is used, it can have several static pages (say `/triplestore/sparql/index.html`).

It is required to point to that page from the menu (that is to say you have to declare it in `config.json`, in the `front.menu` table):

```json
      {
        "role": "custom",
        "link": "/triplestore/sparql/",
        "label": {
            "en": "SPARQL",
                "fr": "SPARQL"
            },
            "icon": "faDatabase",
            "position": "top"
        }
```
back to top