You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The content of the footer is now configurable via
a JSON file. The JSON file is loaded from the
FRONTEND_PATH_JSON_FOOTER environment variable.
It is probably not the final solution, but it
is a first step to make the footer configurable.
In the future, we will probably have a backend
service to manage the footer content.
Copy file name to clipboardExpand all lines: docs/theming.md
+23
Original file line number
Diff line number
Diff line change
@@ -30,4 +30,27 @@ body {
30
30
31
31
Then, set the `FRONTEND_CSS_URL` environment variable to the URL of your custom CSS file. Once you've done this, our application will load your custom CSS file and apply the styles, changing the background color to the custom color you specified.
32
32
33
+
----
34
+
35
+
# **Footer Configuration** 📝
36
+
37
+
The footer is configurable from the theme customization file.
38
+
39
+
### Settings 🔧
40
+
41
+
```shellscript
42
+
THEME_CUSTOMIZATION_FILE_PATH=<path>
43
+
```
44
+
45
+
### Example of JSON
46
+
47
+
The json must follow some rules: https://github.com/suitenumerique/docs/blob/main/src/backend/impress/configuration/theme/default.json
48
+
49
+
`footer.default` is the fallback if the language is not supported.
50
+
51
+
---
52
+
Below is a visual example of a configured footer ⬇️:
0 commit comments