https://github.com/Inist-CNRS/lodex
Raw File
Tip revision: 54fa0b1bb7a9e756bdd2a92d4c0db4514092cc02 authored by Anthony Rimet on 05 January 2023, 15:38:33 UTC
12.31.0
Tip revision: 54fa0b1
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