Revision 170132be2132f303173f244bb541da323b24200e authored by Julien Demangeon on 25 October 2021, 09:05:32 UTC, committed by GitHub on 25 October 2021, 09:05:32 UTC
[42] Fix vega package version for display graph
2 parent s 7867ed3 + a7b3084
Raw File
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