https://github.com/Inist-CNRS/lodex
Raw File
Tip revision: 0344a85dad181bc7fbff97802cf8d07c76b9c49d authored by Nicolas Thouvenin on 09 June 2023, 14:27:41 UTC
14.0.1
Tip revision: 0344a85
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