https://github.com/Inist-CNRS/lodex
Raw File
Tip revision: 4c8b01c6dc9c749495bd075159c2b8d819e9d44c authored by Matthieu Chaffotte on 16 December 2019, 16:13:52 UTC
Merge pull request #1043 from Inist-CNRS/releases/v11.7.2
Tip revision: 4c8b01c
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