diff --git a/assets/css/custom-panel.css b/assets/css/custom-panel.css index fe0157f..8ea034e 100644 --- a/assets/css/custom-panel.css +++ b/assets/css/custom-panel.css @@ -43,7 +43,7 @@ --text-h1: 3em; - --color-green-perso: #04fea0; + --color-green: #04fea0; --color-black: #0b1632; --color-white: #ffffff; diff --git a/site/blueprints/pages/about.yml b/site/blueprints/pages/about.yml index 6c47569..9cbeb9b 100644 --- a/site/blueprints/pages/about.yml +++ b/site/blueprints/pages/about.yml @@ -1,5 +1,9 @@ title: À propos -icon: users +icon: info +image: + back: #fff + color: var(--color-green) + query: false status: draft: label: Brouillon diff --git a/site/blueprints/pages/blog.yml b/site/blueprints/pages/blog.yml index fef197e..1be7f15 100644 --- a/site/blueprints/pages/blog.yml +++ b/site/blueprints/pages/blog.yml @@ -1,5 +1,9 @@ title: Blog -icon: text +icon: blog +image: + back: #fff + color: var(--color-green) + query: false status: draft: label: Brouillon diff --git a/site/blueprints/pages/expertise.yml b/site/blueprints/pages/expertise.yml index 8fc7b85..c3529fe 100644 --- a/site/blueprints/pages/expertise.yml +++ b/site/blueprints/pages/expertise.yml @@ -1,5 +1,8 @@ title: Expertise -icon: wand +icon: text-left +image: + back: #fff + color: var(--color-green) status: draft: label: Brouillon diff --git a/site/blueprints/pages/play.yml b/site/blueprints/pages/play.yml index 9fa1cf8..b240239 100644 --- a/site/blueprints/pages/play.yml +++ b/site/blueprints/pages/play.yml @@ -1,5 +1,8 @@ title: Jouer -icon: play +icon: game-pad +image: + back: #ffffff + color: var(--color-green) status: draft: label: Brouillon diff --git a/site/blueprints/pages/portfolio.yml b/site/blueprints/pages/portfolio.yml index c20fbe5..ee44270 100644 --- a/site/blueprints/pages/portfolio.yml +++ b/site/blueprints/pages/portfolio.yml @@ -1,5 +1,9 @@ title: Portfolio -icon: images +icon: stack +image: + back: #ffffff + query: false + color: var(--color-green) status: draft: label: Brouillon diff --git a/site/blueprints/pages/white-papers.yml b/site/blueprints/pages/white-papers.yml index 7c05d1e..e5a5e6a 100644 --- a/site/blueprints/pages/white-papers.yml +++ b/site/blueprints/pages/white-papers.yml @@ -1,5 +1,9 @@ title: Livres blancs icon: book +image: + back: #fff + color: var(--color-green) + query: false status: draft: label: Brouillon diff --git a/site/blueprints/site.yml b/site/blueprints/site.yml index 61507b1..675480d 100644 --- a/site/blueprints/site.yml +++ b/site/blueprints/site.yml @@ -15,6 +15,44 @@ tabs: sortable: true create: false status: listed + contactFields: + type: fields + fields: + contactEmail: + label: Email + type: email + width: 1/2 + translate: false + contactAddress: + label: Adresse + type: writer + buttons: false + nodes: false + width: 1/2 + placeholder: 33 rue Jean Dupont + socialLinks: + label: Liens réseaux sociaux + type: structure + translate: false + fields: + label: + label: Nom + required: true + type: text + width: 1/3 + placeholder: "Ex: LinkedIn, Instagram..." + url: + label: URL + required: true + type: url + width: 1/3 + picto: + label: Icône SVG + type: textarea + width: 1/3 + buttons: false + size: small + help: Collez le code SVG de l'icône - width: 1/2 fields: @@ -37,44 +75,6 @@ tabs: max: 1 help: Utilisé en pied de page (page À propos, Blog et Article). - - width: 1/2 - fields: - contactEmail: - label: Email - type: email - width: 1/2 - translate: false - contactAddress: - label: Adresse - type: writer - buttons: false - nodes: false - width: 1/2 - placeholder: 33 rue Jean Dupont - socialLinks: - label: Liens réseaux sociaux - type: structure - translate: false - fields: - label: - label: Nom - required: true - type: text - width: 1/3 - placeholder: "Ex: LinkedIn, Instagram..." - url: - label: URL - required: true - type: url - width: 1/3 - picto: - label: Icône SVG - type: textarea - width: 1/3 - buttons: false - size: small - help: Collez le code SVG de l'icône - - width: 1/2 sections: contact: diff --git a/site/plugins/world-game-icons/index.js b/site/plugins/world-game-icons/index.js new file mode 100644 index 0000000..84bc7f7 --- /dev/null +++ b/site/plugins/world-game-icons/index.js @@ -0,0 +1,9 @@ +panel.plugin("adrienpayet/world-game-icons", { + icons: { + "game-pad": + '', + stack: + '', + blog: '', + }, +});