https://github.com/Inist-CNRS/lodex
Raw File
Tip revision: 7f7dfb5826878c678455d4ff7462ed22565e33f7 authored by Guillaume BILLEY on 31 January 2022, 07:58:10 UTC
12.18.0
Tip revision: 7f7dfb5
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