https://github.com/Inist-CNRS/lodex
Raw File
Tip revision: 91995f85b2d743d6d39af58a96c84590995e3665 authored by Anthony Rimet on 22 March 2023, 13:47:09 UTC
12.54.0
Tip revision: 91995f8
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