https://github.com/Inist-CNRS/lodex
Raw File
Tip revision: 33316408e7520dd43b8fa5538fd43f8df9ab638e authored by Anthony Rimet on 06 November 2023, 09:51:44 UTC
14.0.19-alpha
Tip revision: 3331640
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