@silexlabs/silex-dashboard 1.0.41 → 1.0.44

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (83) hide show
  1. package/.gitmodules +2 -2
  2. package/11ty/eleventy.config.mjs +62 -0
  3. package/README.md +8 -2
  4. package/collections/connectors/en.md +70 -0
  5. package/collections/connectors/fr.md +72 -0
  6. package/collections/home/en.md +57 -0
  7. package/{pages/fr/index.md → collections/home/fr.md} +20 -21
  8. package/collections/languages/en.json +5 -0
  9. package/collections/languages/fr.json +5 -0
  10. package/collections/settings/en.json +127 -0
  11. package/collections/settings/fr.json +131 -0
  12. package/package.json +17 -8
  13. package/silex/client-config.js +24 -0
  14. package/{.silex.js → silex/server-config.js} +8 -16
  15. package/templates/connectors-en.11tydata.mjs +56 -0
  16. package/templates/connectors-en.html +440 -0
  17. package/templates/connectors-fr.11tydata.mjs +56 -0
  18. package/templates/connectors-fr.html +440 -0
  19. package/templates/css/connectors-61bd21c2345101e48cc530cacf3afc0156ce7e089fcef3a34f853a537f0c55f2.css +1 -0
  20. package/templates/css/websites-4b9b2b0a0a907b33eca109d50c2a3eee97f1955c742cef487110d21a0bbf8f50.css +1 -0
  21. package/templates/websites-en.11tydata.mjs +108 -0
  22. package/templates/websites-en.html +478 -0
  23. package/templates/websites-fr.11tydata.mjs +108 -0
  24. package/templates/websites-fr.html +478 -0
  25. package/tina/config.ts +258 -0
  26. package/tina/tina-lock.json +1 -0
  27. package/.eleventy.js +0 -11
  28. package/.silex-client.js +0 -22
  29. package/_data/languages.json +0 -7
  30. package/_includes/api-connectors.js.html +0 -96
  31. package/_includes/api-websites.js.html +0 -189
  32. package/_includes/connectors.html +0 -253
  33. package/_includes/websites.html +0 -548
  34. package/_silex/old/assets/alex-hoyau.jpg +0 -0
  35. package/_silex/old/assets/alex-small.jpg +0 -0
  36. package/_silex/old/assets/empty-projects.gif +0 -0
  37. package/_silex/old/assets/gitlab.svg +0 -13
  38. package/_silex/old/assets/picto-silex.png +0 -0
  39. package/_silex/old/assets/silex-icon-2018@200px.png +0 -0
  40. package/_silex/old/meta.json +0 -1
  41. package/_silex/old/website.json +0 -1
  42. package/_site/assets/alex-small.jpg +0 -0
  43. package/_site/assets/bg-purpel-silex.webp +0 -0
  44. package/_site/assets/bg-silex-purpel.webp +0 -0
  45. package/_site/assets/empty-projects-sos.gif +0 -0
  46. package/_site/assets/gitlab.svg +0 -13
  47. package/_site/assets/logo-silex.svg +0 -1
  48. package/_site/assets/picto-silex@3x.png +0 -0
  49. package/_site/assets/silex-dashboard.png +0 -0
  50. package/_site/assets/silex-icon-2018@200px.png +0 -0
  51. package/_site/css/connectors.css +0 -1
  52. package/_site/css/websites.css +0 -1
  53. package/_site/en/connectors/index.html +0 -376
  54. package/_site/en/index.html +0 -795
  55. package/_site/fr/connectors/index.html +0 -376
  56. package/_site/fr/index.html +0 -795
  57. package/assets/alex-small.jpg +0 -0
  58. package/assets/bg-purpel-silex.webp +0 -0
  59. package/assets/bg-silex-purpel.webp +0 -0
  60. package/assets/empty-projects-sos.gif +0 -0
  61. package/assets/favicon-32x32.png +0 -0
  62. package/assets/gitlab.svg +0 -13
  63. package/assets/logo-silex.svg +0 -1
  64. package/assets/picto-silex@3x.png +0 -0
  65. package/assets/silex-dashboard.png +0 -0
  66. package/assets/silex-icon-2018@200px.png +0 -0
  67. package/pages/connectors.css.liquid +0 -4
  68. package/pages/en/connectors.md +0 -4
  69. package/pages/en/en.json +0 -72
  70. package/pages/en/index.md +0 -28
  71. package/pages/fr/connectors.md +0 -5
  72. package/pages/fr/fr.json +0 -72
  73. package/pages/pages.11tydata.js +0 -5
  74. package/pages/websites.css.liquid +0 -4
  75. /package/{_data → 11ty/_data}/api-translations.json +0 -0
  76. /package/{_data → 11ty/_data}/site.js +0 -0
  77. /package/{_includes → 11ty/_includes}/alternate.liquid +0 -0
  78. /package/{_silex/old → templates}/assets/bg-purpel-silex.webp +0 -0
  79. /package/{_silex/old → templates}/assets/bg-silex-purpel.webp +0 -0
  80. /package/{_silex/old → templates}/assets/empty-projects-sos.gif +0 -0
  81. /package/{_site → templates}/assets/favicon-32x32.png +0 -0
  82. /package/{_silex/old → templates}/assets/logo-silex.svg +0 -0
  83. /package/{_silex/old → templates}/assets/picto-silex@3x.png +0 -0
package/.gitmodules CHANGED
@@ -1,3 +1,3 @@
1
- [submodule "_silex/dashboard"]
2
- path = _silex/dashboard
1
+ [submodule "silex/websites/dashboard"]
2
+ path = silex/websites/dashboard
3
3
  url = git@gitlab.com:ceubri/dashboard-silexv3.git
@@ -0,0 +1,62 @@
1
+ import { EleventyI18nPlugin } from '@11ty/eleventy'
2
+ import nodeModules from 'node_modules-path'
3
+ import fs from 'fs/promises'
4
+
5
+ export default async function (eleventyConfig) {
6
+ // Silex CMS
7
+ eleventyConfig.addPassthroughCopy({"templates/css/*.css": "css"});
8
+ eleventyConfig.addPassthroughCopy({"templates/assets": "assets"});
9
+
10
+ // For the fetch plugin
11
+ eleventyConfig.watchIgnores.add('**/.cache/**')
12
+
13
+ // Delete _site before eleventy starts
14
+ eleventyConfig.on(
15
+ "eleventy.before",
16
+ async ({dir, runMode, outputMode}) => {
17
+ try {
18
+ return await fs.rm(dir.output, { recursive: true })
19
+ } catch(e) {
20
+ if(e.code === 'ENOENT') {
21
+ return
22
+ }
23
+ throw e
24
+ }
25
+ },
26
+ )
27
+ // Serve node_modules
28
+ eleventyConfig.on(
29
+ "eleventy.after",
30
+ async ({ dir, results, runMode, outputMode }) => {
31
+ await fs.mkdir(`${dir.output}/js`, { recursive: true })
32
+ for(const file of await fs.readdir(`${nodeModules('vue')}/vue/dist/`)) {
33
+ await fs.copyFile(`${nodeModules('vue')}/vue/dist/${file}`, `${dir.output}/js/${file}`)
34
+ }
35
+ for(const file of await fs.readdir(`${nodeModules('@silexlabs/silex')}/@silexlabs/silex/dist/client/js/`)) {
36
+ await fs.copyFile(`${nodeModules('@silexlabs/silex')}/@silexlabs/silex/dist/client/js/${file}`, `${dir.output}/js/${file}`)
37
+ }
38
+ }
39
+ )
40
+ // // Ignore all files from ../.gitignore
41
+ // eleventyConfig.setUseGitIgnore(false)
42
+ // const content = await fs.readFile('.gitignore', 'utf8')
43
+ // const files = content.split('\n')
44
+ // for (const file of files) {
45
+ // if (file.trim() !== '') {
46
+ // eleventyConfig.ignores.add(file.trim())
47
+ // }
48
+ // }
49
+ eleventyConfig.addPlugin(EleventyI18nPlugin, {
50
+ defaultLanguage: "en",
51
+ })
52
+
53
+ // Return the configuration object
54
+ return {
55
+ dir: {
56
+ input: 'templates',
57
+ includes: '../11ty/_includes',
58
+ layouts: '../11ty/_includes',
59
+ data: '../11ty/_data',
60
+ }
61
+ }
62
+ }
package/README.md CHANGED
@@ -10,14 +10,20 @@ For discussions and bug report please go to [Silex main project](https://github.
10
10
 
11
11
  ## Contribute
12
12
 
13
- Start 11ty on localhost:8080
13
+ Start 11ty
14
14
 
15
15
  ```sh
16
16
  $ npm run serve
17
17
  ```
18
18
 
19
- Start Silex on localhost:6805
19
+ Start Silex
20
20
 
21
21
  ```sh
22
22
  $ npm start
23
23
  ```
24
+
25
+ Use these links
26
+
27
+ * Silex editor: http://localhost:6805
28
+ * Silex dashboard: http://localhost:6805/en/
29
+ * Silex connectors: http://localhost:6805/en/connectors/
@@ -0,0 +1,70 @@
1
+ ---
2
+ lang: en
3
+ title: Silex Dashboard - login page
4
+ title2: Welcome to Silex
5
+ subtitle: Please login to continue
6
+ recommended: Recommended and free
7
+ advanced_users: Advanced users
8
+ help: Do you need help? Check <a href="https://docs.silex.me/en/user/login" target="_blank">the documentation</a>.
9
+ connectors:
10
+ - name: GitLab
11
+ text: Connect with GitLab.com
12
+ auth_url: /api/connector/login?connectorId=gitlab&type=STORAGE
13
+ description: >-
14
+ Gitlab.com is the service we recommend to host your Silex website. We
15
+ trust the company behind the service, <a href="https://about.gitlab.com/"
16
+ title="GitLab company">go check them out</a>.
17
+ icon: >-
18
+ <svg xmlns:svg="http://www.w3.org/2000/svg"
19
+ xmlns="http://www.w3.org/2000/svg"
20
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
21
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
22
+ width="100%" height="100%" viewBox="0 0 1000 963.197"
23
+ version="1.1" id="svg85"> <sodipodi:namedview id="namedview87"
24
+ pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0"
25
+ inkscape:pageshadow="2" inkscape:pageopacity="0.0"
26
+ inkscape:pagecheckerboard="0" showgrid="false"
27
+ inkscape:zoom="1" inkscape:cx="991.5" inkscape:cy="964.5"
28
+ inkscape:window-width="1126" inkscape:window-height="895"
29
+ inkscape:window-x="774" inkscape:window-y="12"
30
+ inkscape:window-maximized="0" inkscape:current-layer="svg85" />
31
+ <defs id="defs74"> <style id="style72">
32
+ .cls-1{fill:#e24329;} .cls-2{fill:#fc6d26;}
33
+ .cls-3{fill:#fca326;} </style> </defs> <g id="LOGO"
34
+ transform="matrix(5.2068817,0,0,5.2068817,-489.30756,-507.76085)">
35
+ <path class="cls-1" d="m 282.83,170.73 -0.27,-0.69
36
+ -26.14,-68.22 a 6.81,6.81 0 0 0 -2.69,-3.24 7,7 0 0 0 -8,0.43 7,7 0 0 0
37
+ -2.32,3.52 l -17.65,54 h -71.47 l -17.65,-54 a 6.86,6.86 0 0 0 -2.32,-3.53
38
+ 7,7 0 0 0 -8,-0.43 6.87,6.87 0 0 0 -2.69,3.24 L 97.44,170 l -0.26,0.69 a
39
+ 48.54,48.54 0 0 0 16.1,56.1 l 0.09,0.07 0.24,0.17 39.82,29.82 19.7,14.91
40
+ 12,9.06 a 8.07,8.07 0 0 0 9.76,0 l 12,-9.06 19.7,-14.91 40.06,-30
41
+ 0.1,-0.08 a 48.56,48.56 0 0 0 16.08,-56.04 z" id="path76" />
42
+ <path class="cls-2" d="m 282.83,170.73 -0.27,-0.69 a 88.3,88.3
43
+ 0 0 0 -35.15,15.8 L 190,229.25 c 19.55,14.79 36.57,27.64 36.57,27.64 l
44
+ 40.06,-30 0.1,-0.08 a 48.56,48.56 0 0 0 16.1,-56.08 z" id="path78"
45
+ /> <path class="cls-3" d="m 153.43,256.89 19.7,14.91
46
+ 12,9.06 a 8.07,8.07 0 0 0 9.76,0 l 12,-9.06 19.7,-14.91 c 0,0
47
+ -17.04,-12.89 -36.59,-27.64 -19.55,14.75 -36.57,27.64 -36.57,27.64
48
+ z" id="path80" /> <path class="cls-2" d="M
49
+ 132.58,185.84 A 88.19,88.19 0 0 0 97.44,170 l -0.26,0.69 a 48.54,48.54 0 0
50
+ 0 16.1,56.1 l 0.09,0.07 0.24,0.17 39.82,29.82 c 0,0 17,-12.85 36.57,-27.64
51
+ z" id="path82" /> </g> </svg>
52
+ color: '#2B1B63'
53
+ background_color: 'rgba(252, 109, 38, 0.2)'
54
+ - name: FTP
55
+ text: Connect with FTP
56
+ auth_url: /api/connector/login?connectorId=ftp&type=STORAGE
57
+ description: >
58
+ FTP is for professional users who want to host their websites with a
59
+ hosting company of their choice
60
+ icon: >-
61
+ <svg xmlns='http://www.w3.org/2000/svg' height='100%' viewBox='0 0 512
62
+ 512'> <path d='M64 32C28.7 32 0 60.7 0 96v64c0 35.3 28.7 64 64
63
+ 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm280 72a24 24 0 1 1
64
+ 0 48 24 24 0 1 1 0-48zm48 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM64
65
+ 288c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7
66
+ 64-64V352c0-35.3-28.7-64-64-64H64zm280 72a24 24 0 1 1 0 48 24 24 0 1 1
67
+ 0-48zm56 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z' /> </svg>
68
+ color: '#ffffff'
69
+ background_color: '#0066CC'
70
+ ---
@@ -0,0 +1,72 @@
1
+ ---
2
+ lang: fr
3
+ title: Silex Dashboard - login page
4
+ title2: Bienvenue sur Silex
5
+ subtitle: Connectez-vous pour continuer
6
+ recommended: Recommandé et gratuit
7
+ advanced_users: Utilisateurs avancés
8
+ help: Avez-vous besoin d'aide ? Consultez <a href="https://docs.silex.me/fr/user/login" target="_blank">la documentation</a>.
9
+ connectors:
10
+ - name: GitLab
11
+ text: Se connecter avec GitLab.com
12
+ auth_url: /api/connector/login?connectorId=gitlab&type=STORAGE
13
+ description: >-
14
+ Gitlab.com est le service que nous recommandons pour héberger votre site
15
+ web Silex. Nous faisons confiance à l'entreprise derrière ce service, <a
16
+ href="https://about.gitlab.com/fr-fr/" title="entreprise GitLab">allez les
17
+ voir</a>.
18
+ icon: >-
19
+ <svg xmlns:svg="http://www.w3.org/2000/svg"
20
+ xmlns="http://www.w3.org/2000/svg"
21
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
22
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
23
+ width="100%" height="100%" viewBox="0 0 1000 963.197"
24
+ version="1.1" id="svg85"> <sodipodi:namedview id="namedview87"
25
+ pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0"
26
+ inkscape:pageshadow="2" inkscape:pageopacity="0.0"
27
+ inkscape:pagecheckerboard="0" showgrid="false"
28
+ inkscape:zoom="1" inkscape:cx="991.5" inkscape:cy="964.5"
29
+ inkscape:window-width="1126" inkscape:window-height="895"
30
+ inkscape:window-x="774" inkscape:window-y="12"
31
+ inkscape:window-maximized="0" inkscape:current-layer="svg85" />
32
+ <defs id="defs74"> <style id="style72">
33
+ .cls-1{fill:#e24329;} .cls-2{fill:#fc6d26;}
34
+ .cls-3{fill:#fca326;} </style> </defs> <g id="LOGO"
35
+ transform="matrix(5.2068817,0,0,5.2068817,-489.30756,-507.76085)">
36
+ <path class="cls-1" d="m 282.83,170.73 -0.27,-0.69
37
+ -26.14,-68.22 a 6.81,6.81 0 0 0 -2.69,-3.24 7,7 0 0 0 -8,0.43 7,7 0 0 0
38
+ -2.32,3.52 l -17.65,54 h -71.47 l -17.65,-54 a 6.86,6.86 0 0 0 -2.32,-3.53
39
+ 7,7 0 0 0 -8,-0.43 6.87,6.87 0 0 0 -2.69,3.24 L 97.44,170 l -0.26,0.69 a
40
+ 48.54,48.54 0 0 0 16.1,56.1 l 0.09,0.07 0.24,0.17 39.82,29.82 19.7,14.91
41
+ 12,9.06 a 8.07,8.07 0 0 0 9.76,0 l 12,-9.06 19.7,-14.91 40.06,-30
42
+ 0.1,-0.08 a 48.56,48.56 0 0 0 16.08,-56.04 z" id="path76" />
43
+ <path class="cls-2" d="m 282.83,170.73 -0.27,-0.69 a 88.3,88.3
44
+ 0 0 0 -35.15,15.8 L 190,229.25 c 19.55,14.79 36.57,27.64 36.57,27.64 l
45
+ 40.06,-30 0.1,-0.08 a 48.56,48.56 0 0 0 16.1,-56.08 z" id="path78"
46
+ /> <path class="cls-3" d="m 153.43,256.89 19.7,14.91
47
+ 12,9.06 a 8.07,8.07 0 0 0 9.76,0 l 12,-9.06 19.7,-14.91 c 0,0
48
+ -17.04,-12.89 -36.59,-27.64 -19.55,14.75 -36.57,27.64 -36.57,27.64
49
+ z" id="path80" /> <path class="cls-2" d="M
50
+ 132.58,185.84 A 88.19,88.19 0 0 0 97.44,170 l -0.26,0.69 a 48.54,48.54 0 0
51
+ 0 16.1,56.1 l 0.09,0.07 0.24,0.17 39.82,29.82 c 0,0 17,-12.85 36.57,-27.64
52
+ z" id="path82" /> </g> </svg>
53
+ color: '#2B1B63'
54
+ background_color: 'rgba(252, 109, 38, 0.2)'
55
+ - name: FTP
56
+ text: Se connecter avec un FTP
57
+ auth_url: /api/connector/login?connectorId=ftp&type=STORAGE
58
+ description: >
59
+ FTP est destiné aux utilisateurs professionnels qui souhaitent héberger
60
+ leurs sites web avec une société d'hébergement de leur choix.
61
+ icon: >-
62
+ <svg xmlns='http://www.w3.org/2000/svg' height='100%' viewBox='0 0 512
63
+ 512'> <path d='M64 32C28.7 32 0 60.7 0 96v64c0 35.3 28.7 64 64
64
+ 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm280 72a24 24 0 1 1
65
+ 0 48 24 24 0 1 1 0-48zm48 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM64
66
+ 288c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7
67
+ 64-64V352c0-35.3-28.7-64-64-64H64zm280 72a24 24 0 1 1 0 48 24 24 0 1 1
68
+ 0-48zm56 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z' /> </svg>
69
+ color: '#ffffff'
70
+ background_color: '#0066CC'
71
+ ---
72
+
@@ -0,0 +1,57 @@
1
+ ---
2
+ lang: en
3
+ title: Silex Dashboard
4
+ title2: Welcome back!
5
+ subtitle: Dive into your projects or kickstart a new one
6
+ title2_empty: 'Welcome, let''s get started'
7
+ subtitle_empty: 'Create your first project, click on "Create a website"'
8
+ text_empty1: Such emptyness...
9
+ text_empty2: Ready to start your journey?
10
+ add_button: Create website
11
+ add_title: Create a new website
12
+ add_name_label: Website name
13
+ add_name_placeholder: My project website
14
+ add_ok: Create
15
+ add_cancel: Cancel
16
+ list_item_updated: Updated
17
+ list_item_created: Created
18
+ list_edit: Edit
19
+ list_edit_icon: >-
20
+ <svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 448
21
+ 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com
22
+ License - https://fontawesome.com/license (Commercial License) Copyright 2023
23
+ Fonticons, Inc. --><path fill="#8873fe" d="M368 80h32v32H368V80zM352 32c-17.7
24
+ 0-32 14.3-32 32H128c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v64c0 17.7 14.3
25
+ 32 32 32V352c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H96c17.7 0 32-14.3
26
+ 32-32H320c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3
27
+ 32-32V384c0-17.7-14.3-32-32-32V160c17.7 0 32-14.3
28
+ 32-32V64c0-17.7-14.3-32-32-32H352zM96 160c17.7 0 32-14.3 32-32H320c0 17.7 14.3
29
+ 32 32 32V352c-17.7 0-32 14.3-32 32H128c0-17.7-14.3-32-32-32V160zM48
30
+ 400H80v32H48V400zm320 32V400h32v32H368zM48 112V80H80v32H48z"/></svg>
31
+ list_rename: Rename
32
+ list_rename_icon: >-
33
+ <svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 512
34
+ 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com
35
+ License - https://fontawesome.com/license (Commercial License) Copyright 2023
36
+ Fonticons, Inc. --><path fill="#8873fe" d="M471.6
37
+ 21.7c-21.9-21.9-57.3-21.9-79.2 0L362.3 51.7l97.9 97.9 30.1-30.1c21.9-21.9
38
+ 21.9-57.3 0-79.2L471.6 21.7zm-299.2 220c-6.1 6.1-10.8 13.6-13.5 21.9l-29.6
39
+ 88.8c-2.9 8.6-.6 18.1 5.8 24.6s15.9 8.7 24.6 5.8l88.8-29.6c8.2-2.7 15.7-7.4
40
+ 21.9-13.5L437.7 172.3 339.7 74.3 172.4 241.7zM96 64C43 64 0 107 0 160V416c0 53
41
+ 43 96 96 96H352c53 0 96-43 96-96V320c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0
42
+ 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h96c17.7 0
43
+ 32-14.3 32-32s-14.3-32-32-32H96z"/></svg>
44
+ list_duplicate: Duplicate
45
+ list_duplicate_icon: >-
46
+ <svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 448
47
+ 512"><path fill="#8873fe" d="M384 336H192c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16
48
+ 16-16l140.1 0L400 115.9V320c0 8.8-7.2 16-16 16zM192 384H384c35.3 0 64-28.7
49
+ 64-64V115.9c0-12.7-5.1-24.9-14.1-33.9L366.1
50
+ 14.1c-9-9-21.2-14.1-33.9-14.1H192c-35.3 0-64 28.7-64 64V320c0 35.3 28.7 64 64
51
+ 64zM64 128c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H256c35.3 0 64-28.7
52
+ 64-64V416H272v32c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V192c0-8.8 7.2-16
53
+ 16-16H96V128H64z"/></svg>
54
+ list_delete: Delete
55
+ message_dismiss: Dismiss
56
+ ---
57
+
@@ -1,28 +1,27 @@
1
1
  ---
2
- layout: websites
3
2
  lang: fr
4
3
  title: Dashboard Silex
5
4
  title2: Bienvenue !
6
5
  subtitle: Plongez-vous dans un projet ou créez-en un nouveau
7
- title2-empty: Bienvenue !
8
- subtitle-empty: Créez votre premier projet, clickez sur le boutont "Créer un site"
9
- text-empty1: "C'est bien calme ici..."
10
- text-empty2: "Prêt.e à démarrer une nouvelle aventure?"
11
- add-button: Créer un site
12
- add-title: Créer un nouveau site internet
13
- add-name-label: Nom du site
14
- add-name-placeholder: Mon super projet
15
- add-ok: Créer
16
- add-cancel: Annuler
17
- list-item-updated: Mis à jour le
18
- list-item-created: Créé le
19
- list-edit: Editer
20
- list-edit-icon: '<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path fill="#8873fe" d="M368 80h32v32H368V80zM352 32c-17.7 0-32 14.3-32 32H128c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v64c0 17.7 14.3 32 32 32V352c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H96c17.7 0 32-14.3 32-32H320c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V384c0-17.7-14.3-32-32-32V160c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H352zM96 160c17.7 0 32-14.3 32-32H320c0 17.7 14.3 32 32 32V352c-17.7 0-32 14.3-32 32H128c0-17.7-14.3-32-32-32V160zM48 400H80v32H48V400zm320 32V400h32v32H368zM48 112V80H80v32H48z"/></svg>'
21
- list-rename: Renommer
22
- list-rename-icon: '<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path fill="#8873fe" d="M471.6 21.7c-21.9-21.9-57.3-21.9-79.2 0L362.3 51.7l97.9 97.9 30.1-30.1c21.9-21.9 21.9-57.3 0-79.2L471.6 21.7zm-299.2 220c-6.1 6.1-10.8 13.6-13.5 21.9l-29.6 88.8c-2.9 8.6-.6 18.1 5.8 24.6s15.9 8.7 24.6 5.8l88.8-29.6c8.2-2.7 15.7-7.4 21.9-13.5L437.7 172.3 339.7 74.3 172.4 241.7zM96 64C43 64 0 107 0 160V416c0 53 43 96 96 96H352c53 0 96-43 96-96V320c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H96z"/></svg>'
23
- list-duplicate: Dupliquer
24
- list-duplicate-icon: '<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 448 512"><path fill="#8873fe" d="M384 336H192c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16l140.1 0L400 115.9V320c0 8.8-7.2 16-16 16zM192 384H384c35.3 0 64-28.7 64-64V115.9c0-12.7-5.1-24.9-14.1-33.9L366.1 14.1c-9-9-21.2-14.1-33.9-14.1H192c-35.3 0-64 28.7-64 64V320c0 35.3 28.7 64 64 64zM64 128c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H256c35.3 0 64-28.7 64-64V416H272v32c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V192c0-8.8 7.2-16 16-16H96V128H64z"/></svg>'
25
- list-delete: Supprimer
26
- message-dismiss: Fermer
6
+ title2_empty: Bienvenue !
7
+ subtitle_empty: Créez votre premier projet, clickez sur le boutont "Créer un site"
8
+ text_empty1: "C'est bien calme ici..."
9
+ text_empty2: "Prêt.e à démarrer une nouvelle aventure?"
10
+ add_button: Créer un site
11
+ add_title: Créer un nouveau site internet
12
+ add_name_label: Nom du site
13
+ add_name_placeholder: Mon super projet
14
+ add_ok: Créer
15
+ add_cancel: Annuler
16
+ list_item_updated: Mis à jour le
17
+ list_item_created: Créé le
18
+ list_edit: Editer
19
+ list_edit_icon: '<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path fill="#8873fe" d="M368 80h32v32H368V80zM352 32c-17.7 0-32 14.3-32 32H128c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v64c0 17.7 14.3 32 32 32V352c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H96c17.7 0 32-14.3 32-32H320c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V384c0-17.7-14.3-32-32-32V160c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H352zM96 160c17.7 0 32-14.3 32-32H320c0 17.7 14.3 32 32 32V352c-17.7 0-32 14.3-32 32H128c0-17.7-14.3-32-32-32V160zM48 400H80v32H48V400zm320 32V400h32v32H368zM48 112V80H80v32H48z"/></svg>'
20
+ list_rename: Renommer
21
+ list_rename_icon: '<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path fill="#8873fe" d="M471.6 21.7c-21.9-21.9-57.3-21.9-79.2 0L362.3 51.7l97.9 97.9 30.1-30.1c21.9-21.9 21.9-57.3 0-79.2L471.6 21.7zm-299.2 220c-6.1 6.1-10.8 13.6-13.5 21.9l-29.6 88.8c-2.9 8.6-.6 18.1 5.8 24.6s15.9 8.7 24.6 5.8l88.8-29.6c8.2-2.7 15.7-7.4 21.9-13.5L437.7 172.3 339.7 74.3 172.4 241.7zM96 64C43 64 0 107 0 160V416c0 53 43 96 96 96H352c53 0 96-43 96-96V320c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H96z"/></svg>'
22
+ list_duplicate: Dupliquer
23
+ list_duplicate_icon: '<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 448 512"><path fill="#8873fe" d="M384 336H192c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16l140.1 0L400 115.9V320c0 8.8-7.2 16-16 16zM192 384H384c35.3 0 64-28.7 64-64V115.9c0-12.7-5.1-24.9-14.1-33.9L366.1 14.1c-9-9-21.2-14.1-33.9-14.1H192c-35.3 0-64 28.7-64 64V320c0 35.3 28.7 64 64 64zM64 128c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H256c35.3 0 64-28.7 64-64V416H272v32c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V192c0-8.8 7.2-16 16-16H96V128H64z"/></svg>'
24
+ list_delete: Supprimer
25
+ message_dismiss: Fermer
27
26
 
28
27
  ---
@@ -0,0 +1,5 @@
1
+ {
2
+ "code": "en",
3
+ "label": "EN",
4
+ "permalink": "/en"
5
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "code": "fr",
3
+ "label": "FR",
4
+ "permalink": "/fr"
5
+ }
@@ -0,0 +1,127 @@
1
+ {
2
+ "lang": "en",
3
+ "nav": [
4
+ {
5
+ "label": "Sites",
6
+ "url": "/"
7
+ },
8
+ {
9
+ "label": "Docs",
10
+ "url": "http://docs.silex.me/",
11
+ "target": "_blank"
12
+ },
13
+ {
14
+ "label": "About",
15
+ "url": "https://www.silex.me/",
16
+ "target": "_blank"
17
+ },
18
+ {
19
+ "label": "Community",
20
+ "url": "https://community.silex.me/",
21
+ "target": "_blank"
22
+ },
23
+ {
24
+ "label": "News",
25
+ "url": "https://mail-list.silexlabs.org/subscription/cemnfkaVrK?locale=en-US&source=silex-dashboard",
26
+ "target": "_blank"
27
+ }
28
+ ],
29
+ "footer_links": [
30
+ {
31
+ "title": "Social & community",
32
+ "columns": [
33
+ {
34
+ "label": "About Silex, official website",
35
+ "url": "https://www.silex.me/",
36
+ "target": "_blank"
37
+ },
38
+ {
39
+ "label": "Email the team",
40
+ "url": "mailto:contact+silex-dashboard-footer@silex.me"
41
+ },
42
+ {
43
+ "label": "Sponsors",
44
+ "url": "https://short.silex.me/sponsors"
45
+ },
46
+ {
47
+ "label": "Donate",
48
+ "url": "https://short.silex.me/donate"
49
+ },
50
+ {
51
+ "label": "Community forum",
52
+ "url": "https://short.silex.me/community",
53
+ "target": "_blank"
54
+ },
55
+ {
56
+ "label": "Newsletter",
57
+ "url": "https://news.silex.me/forms/nfrm_weLJnLY5",
58
+ "target": "_blank"
59
+ },
60
+ {
61
+ "label": "Meetups/ Events",
62
+ "url": "https://events.silex.me/",
63
+ "target": "_blank"
64
+ },
65
+ {
66
+ "label": "Mastodon",
67
+ "url": "https://short.silex.me/mastodon",
68
+ "target": "_blank"
69
+ },
70
+ {
71
+ "label": "Chat",
72
+ "url": "https://short.silex.me/chat"
73
+ }
74
+ ]
75
+ },
76
+ {
77
+ "title": "Resources",
78
+ "columns": [
79
+ {
80
+ "label": "Source code",
81
+ "url": "https://short.silex.me/code",
82
+ "target": "_blank"
83
+ },
84
+ {
85
+ "label": "Documentation",
86
+ "url": "http://docs.silex.me/",
87
+ "target": "_blank"
88
+ },
89
+ {
90
+ "label": "Videos",
91
+ "url": "https://video.silex.me/my-library/video-playlists",
92
+ "target": "_blank"
93
+ },
94
+ {
95
+ "label": "Roadmap",
96
+ "url": "https://short.silex.me/roadmap",
97
+ "target": "_blank"
98
+ },
99
+ {
100
+ "label": "Contribute",
101
+ "url": "https://short.silex.me/contribute",
102
+ "target": "_blank"
103
+ }
104
+ ]
105
+ },
106
+ {
107
+ "title": "Articles and reviews",
108
+ "columns": [
109
+ {
110
+ "label": "Silex alternatives",
111
+ "url": "https://short.silex.me/alternatives",
112
+ "target": "_blank"
113
+ },
114
+ {
115
+ "label": "Silex reviews",
116
+ "url": "https://short.silex.me/reviews",
117
+ "target": "_blank"
118
+ },
119
+ {
120
+ "label": "Silex in the press",
121
+ "url": "https://short.silex.me/press",
122
+ "target": "_blank"
123
+ }
124
+ ]
125
+ }
126
+ ]
127
+ }
@@ -0,0 +1,131 @@
1
+ {
2
+ "lang": "fr",
3
+ "nav": [
4
+ {
5
+ "label": "Sites",
6
+ "url": "/"
7
+ },
8
+ {
9
+ "label": "Docs",
10
+ "url": "http://docs.silex.me/",
11
+ "target": "_blank"
12
+ },
13
+ {
14
+ "label": "A propos",
15
+ "url": "https://www.silex.me/",
16
+ "target": "_blank"
17
+ },
18
+ {
19
+ "label": "Communauté",
20
+ "url": "https://community.silex.me/",
21
+ "target": "_blank"
22
+ },
23
+ {
24
+ "label": "News",
25
+ "url": "https://mail-list.silexlabs.org/subscription/cemnfkaVrK?locale=fr-FR&source=silex-dashboard",
26
+ "target": "_blank"
27
+ }
28
+ ],
29
+ "footer_links": [
30
+ {
31
+ "title": "Social & communauté",
32
+ "columns": [
33
+ {
34
+ "label": "A propos de Silex, site officiel",
35
+ "url": "https://www.silex.me/",
36
+ "target": "_blank"
37
+ },
38
+ {
39
+ "label": "Email l'équipe",
40
+ "url": "mailto:contact+silex-dashboard-footer@silex.me",
41
+ "target": "_blank"
42
+ },
43
+ {
44
+ "label": "Sponsors",
45
+ "url": "https://short.silex.me/sponsors",
46
+ "target": "_blank"
47
+ },
48
+ {
49
+ "label": "Faire un don",
50
+ "url": "https://short.silex.me/donate",
51
+ "target": "_blank"
52
+ },
53
+ {
54
+ "label": "Forum de la communauté",
55
+ "url": "https://short.silex.me/community",
56
+ "target": "_blank"
57
+ },
58
+ {
59
+ "label": "Newsletter",
60
+ "url": "https://news.silex.me/forms/nfrm_weLJnLY5",
61
+ "target": "_blank"
62
+ },
63
+ {
64
+ "label": "Meetups/ Evénements",
65
+ "url": "https://events.silex.me/",
66
+ "target": "_blank"
67
+ },
68
+ {
69
+ "label": "Mastodon",
70
+ "url": "https://short.silex.me/mastodon",
71
+ "target": "_blank"
72
+ },
73
+ {
74
+ "label": "Chat",
75
+ "url": "https://short.silex.me/chat",
76
+ "target": "_blank"
77
+ }
78
+ ]
79
+ },
80
+ {
81
+ "title": "Ressources",
82
+ "columns": [
83
+ {
84
+ "label": "Code source",
85
+ "url": "https://short.silex.me/code",
86
+ "target": "_blank"
87
+ },
88
+ {
89
+ "label": "Documentation",
90
+ "url": "http://docs.silex.me/",
91
+ "target": "_blank"
92
+ },
93
+ {
94
+ "label": "Vidéos",
95
+ "url": "https://video.silex.me/my-library/video-playlists",
96
+ "target": "_blank"
97
+ },
98
+ {
99
+ "label": "Feuille de route",
100
+ "url": "https://short.silex.me/roadmap",
101
+ "target": "_blank"
102
+ },
103
+ {
104
+ "label": "Contribuer",
105
+ "url": "https://short.silex.me/contribute",
106
+ "target": "_blank"
107
+ }
108
+ ]
109
+ },
110
+ {
111
+ "title": "Articles et revues",
112
+ "columns": [
113
+ {
114
+ "label": "Alternatives à Silex",
115
+ "url": "https://short.silex.me/alternatives_fr",
116
+ "target": "_blank"
117
+ },
118
+ {
119
+ "label": "Revues de Silex",
120
+ "url": "https://short.silex.me/reviews_fr",
121
+ "target": "_blank"
122
+ },
123
+ {
124
+ "label": "Silex dans la presse",
125
+ "url": "https://short.silex.me/press_fr",
126
+ "target": "_blank"
127
+ }
128
+ ]
129
+ }
130
+ ]
131
+ }