swh:1:snp:4a9befeb2f7523efee886bd856f69e8692a72c45
Raw File
Tip revision: 1f7651b688e6be41f9f3976fb246d79008809568 authored by François Parmentier on 16 May 2019, 08:38:21 UTC
:bookmark: 9.8.0: new PDF format
Tip revision: 1f7651b
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