Revision f8c7dea56358c297ad7d328f4c4c2100ea926c61 authored by Matthieu Chaffotte on 12 December 2019, 15:42:12 UTC, committed by GitHub on 12 December 2019, 15:42:12 UTC
2 parent s 18bb96b + bfb9d80
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