forked from Inist-CNRS/lodex
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: move template variables into the LODEX dynamic config
- Loading branch information
1 parent
ea9df0e
commit 41746ff
Showing
14 changed files
with
107 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
}, | ||
"enrichmentBatchSize": 10, | ||
"front": { | ||
"theme": {}, | ||
"breadcrumb": [], | ||
"menu": [ | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,24 @@ | ||
{ | ||
"version": "3", | ||
"restricted": true, | ||
"name": { | ||
"fr": "ISTEX", | ||
"en": "ISTEX" | ||
}, | ||
"description": { | ||
"fr": "Thème ISTEX historique (restreint)", | ||
"en": "ISTEX theme legacy(restricted)" | ||
}, | ||
"version": "4", | ||
"restricted": true, | ||
"name": { | ||
"fr": "ISTEX", | ||
"en": "ISTEX" | ||
}, | ||
"description": { | ||
"fr": "Thème ISTEX historique (restreint)", | ||
"en": "ISTEX theme legacy(restricted)" | ||
}, | ||
"configuration": { | ||
"files": { | ||
"theme": { | ||
"main": "customTheme.js", | ||
"index": "index.ejs" | ||
} | ||
"index": "index.ejs", | ||
"palette": "customTheme.js" | ||
}, | ||
"variables": { | ||
"host": "/", | ||
"title": "Services", | ||
"summary": "Les technologies et les outils ISTEX pour les projets de recherche.", | ||
"matomoID": "39" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,24 @@ | ||
{ | ||
"version": "3", | ||
"licence": "All Right Reserved", | ||
"name": { | ||
"fr": "ISTEX", | ||
"en": "ISTEX" | ||
}, | ||
"description": { | ||
"fr": "Thème ISTEX (restreint)", | ||
"en": "ISTEX theme (restricted)" | ||
}, | ||
"version": "4", | ||
"licence": "All Right Reserved", | ||
"name": { | ||
"fr": "ISTEX", | ||
"en": "ISTEX" | ||
}, | ||
"description": { | ||
"fr": "Thème ISTEX (restreint)", | ||
"en": "ISTEX theme (restricted)" | ||
}, | ||
"configuration": { | ||
"files": { | ||
"theme": { | ||
"main": "istexTheme.js", | ||
"index": "index.ejs" | ||
} | ||
"index": "index.ejs", | ||
"palette": "istexTheme.js" | ||
}, | ||
"variables": { | ||
"host": "/", | ||
"title": "Services", | ||
"summary": "Les technologies et les outils ISTEX pour les projets de recherche.", | ||
"matomoID": "39" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.