https://github.com/Inist-CNRS/lodex
Raw File
Tip revision: 0f7b8e686bf62cadd2bd1f404d3b9e9b8f3264e6 authored by Nicolas Thouvenin on 08 October 2020, 21:22:20 UTC
11.16.2
Tip revision: 0f7b8e6
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