https://github.com/Inist-CNRS/lodex
Raw File
Tip revision: f22e3d04eb814ad22b9136a1e39b4ffa8446add1 authored by Julien Demangeon on 30 November 2020, 10:45:02 UTC
Merge pull request #1154 from Inist-CNRS/version12.0.7
Tip revision: f22e3d0
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