swh:1:snp:4a9befeb2f7523efee886bd856f69e8692a72c45
Raw File
Tip revision: 7ddd19afa8521366452535fe5bfd6c46f7bc9eaa authored by Anthony Rimet on 08 December 2022, 10:58:30 UTC
12.26.0
Tip revision: 7ddd19a
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