https://github.com/Inist-CNRS/lodex
Raw File
Tip revision: ba153100cb9c218b351d5f4b634d5ba944aa1060 authored by JulienM on 09 December 2020, 16:53:53 UTC
Merge pull request #1162 from Inist-CNRS/bump-12.0.8
Tip revision: ba15310
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