Revision 7f95285cf5a6fb4faa1149cc74292baa0c0d1507 authored by Nicolas Thouvenin on 12 February 2024, 10:39:38 UTC, committed by Nicolas Thouvenin on 12 February 2024, 10:39:38 UTC
1 parent 36c52d1
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 admin config interface, in the `front.menu` table):

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