@madgex/fert 6.2.2 → 6.3.1

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 (29) hide show
  1. package/bin/commands/build-tasks/build-external-assets.js +1 -1
  2. package/bin/utils/index.js +1 -1
  3. package/constants.js +43 -0
  4. package/package.json +2 -2
  5. package/repo-template/services/recruiterservices-frontend/brand.json +24 -0
  6. package/repo-template/services/recruiterservices-frontend/fert.service.config.js +7 -0
  7. package/repo-template/services/recruiterservices-frontend/public/fonts/mdgx-icons.eot +0 -0
  8. package/repo-template/services/recruiterservices-frontend/public/fonts/mdgx-icons.svg +71 -0
  9. package/repo-template/services/recruiterservices-frontend/public/fonts/mdgx-icons.ttf +0 -0
  10. package/repo-template/services/recruiterservices-frontend/public/fonts/mdgx-icons.woff +0 -0
  11. package/repo-template/services/recruiterservices-frontend/public/icons/icons.svg +1 -0
  12. package/repo-template/services/recruiterservices-frontend/public/images/favicon.ico +0 -0
  13. package/repo-template/services/recruiterservices-frontend/public/images/logo.png +0 -0
  14. package/repo-template/services/recruiterservices-frontend/src/css/styles.scss +138 -0
  15. package/repo-template/services/recruiterservices-frontend/src/index.js +1 -0
  16. package/repo-template/services/recruiterservices-frontend/templates/context/primary-nav-links.njk +22 -0
  17. package/repo-template/services/recruiterservices-frontend/templates/footer.njk +8 -0
  18. package/repo-template/services/recruiterservices-frontend/templates/header.njk +82 -0
  19. package/repo-template/services/recruiterservices-frontend/templates/includes/basket-nav.njk +25 -0
  20. package/repo-template/services/recruiterservices-frontend/templates/includes/primary-nav.njk +18 -0
  21. package/repo-template/services/recruiterservices-frontend/templates/includes/user-nav/authenticated.njk +36 -0
  22. package/repo-template/services/recruiterservices-frontend/templates/includes/user-nav/switch-recruiters.njk +13 -0
  23. package/repo-template/services/recruiterservices-frontend/templates/includes/user-nav/unauthenticated.njk +11 -0
  24. package/repo-template/services/recruiterservices-frontend/templates/includes/user-nav/user-nav.njk +9 -0
  25. package/repo-template/services/recruiterservices-frontend/templates/translations/en.njk +28 -0
  26. package/server/routes/public.js +10 -0
  27. package/server/server.js +5 -10
  28. package/server/templates/furniture.njk +1 -0
  29. package/server/view-manager.js +5 -3
@@ -4,7 +4,7 @@ import { log } from '../../utils/logging.js';
4
4
 
5
5
  export async function buildExternalAssets(fertConfig) {
6
6
  const { externalAssets, workingDir } = fertConfig;
7
- const destination = Path.join(workingDir, `/dist/external-assets.json`);
7
+ const destination = Path.resolve(workingDir, './dist/external-assets.json');
8
8
 
9
9
  try {
10
10
  await fs.writeFile(destination, JSON.stringify(externalAssets, null, 2));
@@ -129,7 +129,7 @@ export async function loadServiceConfigFiles() {
129
129
  const serviceConfigPaths = await Array.fromAsync(
130
130
  glob(`**/${FERT_SERVICE_CONFIG_FILENAME}`, {
131
131
  cwd: path.resolve(rootDir),
132
- exclude: (item) => ['node_modules', 'dist'].includes(item),
132
+ exclude: (item) => ['node_modules', 'repo-template', 'dist'].includes(item),
133
133
  }),
134
134
  );
135
135
 
package/constants.js CHANGED
@@ -1,6 +1,9 @@
1
1
  import fs from 'node:fs';
2
2
  import path from 'node:path';
3
3
  import os from 'node:os';
4
+ import { createRequire } from 'node:module';
5
+
6
+ const require = createRequire(import.meta.url);
4
7
 
5
8
  export const { version: VERSION } = JSON.parse(
6
9
  fs.readFileSync(path.resolve(import.meta.dirname, './package.json')).toString(),
@@ -14,6 +17,7 @@ export const ONE_WEEK = ONE_DAY * 7;
14
17
  export const TMP_DIR = fs.realpathSync(os.tmpdir());
15
18
  export const FERT_PACKAGE_DIR = path.resolve('./');
16
19
  export const CUSTOM_TEMPLATES_DIR = './pages';
20
+ export const MDS_PATH = path.dirname(require.resolve('@madgex/design-system/package.json'));
17
21
  export const AWS_REGION = 'eu-west-1';
18
22
  export const PROPERTY_ID_API = 'https://property-identification-api.cs.madgexhosting.net/properties/';
19
23
  export const ASSETS_API_URL = 'https://asset-store.job.madgexhosting.net';
@@ -51,3 +55,42 @@ export const ASSET_STORE_USER_GUID = 'a386d4b6-f2df-4b80-ad1f-0349e23f530b';
51
55
  export const CONFIG_API =
52
56
  'https://configuration-api.job.madgexhosting.net/configs/override/{cpid}/production/clientconfig/{config}';
53
57
  export const CONFIG_DIR = 'config';
58
+
59
+ export const MOCK_AUTH_OBJECT = {
60
+ 'recruiterservices-frontend': {
61
+ credentials: {
62
+ email: 'email@madgex.com',
63
+ firstName: 'Samus',
64
+ lastName: 'Aran',
65
+ userId: 'b5699145-e867-4b47-8b18-f81247948dbb',
66
+ username: 'Samus Aran',
67
+ },
68
+ artifacts: {
69
+ recruiters: [
70
+ {
71
+ id: 1,
72
+ name: 'Recruiter 1',
73
+ basketCount: 0,
74
+ isPrimary: true,
75
+ hasCredits: true,
76
+ },
77
+ {
78
+ id: 2,
79
+ name: 'Recruiter 2',
80
+ basketCount: 0,
81
+ isPrimary: false,
82
+ hasCredits: false,
83
+ },
84
+ ],
85
+ },
86
+ },
87
+ 'jobseekers-frontend': {
88
+ credentials: {
89
+ email: 'email@madgex.com',
90
+ firstName: 'Samus',
91
+ lastName: 'Aran',
92
+ userId: 'b5699145-e867-4b47-8b18-f81247948dbb',
93
+ username: 'Samus Aran',
94
+ },
95
+ },
96
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@madgex/fert",
3
- "version": "6.2.2",
3
+ "version": "6.3.1",
4
4
  "description": "Tool to help build the V6 branding",
5
5
  "bin": {
6
6
  "fert": "./bin/cli.js"
@@ -31,7 +31,7 @@
31
31
  "@hapi/inert": "^7.1.0",
32
32
  "@hapi/vision": "^7.0.3",
33
33
  "@hapipal/toys": "^4.0.0",
34
- "@madgex/design-system": "^10.0.5",
34
+ "@madgex/design-system": "^10.1.2",
35
35
  "@madgex/config-api-sdk": "^1.9.1",
36
36
  "@private/header-footer-podlet-server": "github:wiley/madgex-header-footer-podlet",
37
37
  "axios": "^1.9.0",
@@ -0,0 +1,24 @@
1
+ {
2
+ "color": {
3
+ "brand": {
4
+ "1": {
5
+ "base": { "$value": "#005689" }
6
+ },
7
+ "2": {
8
+ "base": { "$value": "#343434" }
9
+ }
10
+ },
11
+ "button": {
12
+ "bg": {
13
+ "base": { "$value": "#005689" }
14
+ }
15
+ }
16
+ },
17
+ "font": {
18
+ "family": {
19
+ "button": {
20
+ "base": { "$value": "Arial" }
21
+ }
22
+ }
23
+ }
24
+ }
@@ -0,0 +1,7 @@
1
+ module.exports = {
2
+ serviceName: 'recruiterservices-frontend',
3
+ entry: './src/index.js',
4
+ externalAssets: {
5
+ links: 'https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400&display=swap',
6
+ },
7
+ };
@@ -0,0 +1,71 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
+ <svg xmlns="http://www.w3.org/2000/svg">
4
+ <metadata>Generated by IcoMoon</metadata>
5
+ <defs>
6
+ <font id="mdgx-icons" horiz-adv-x="512">
7
+ <font-face units-per-em="512" ascent="409.6" descent="-102.4" />
8
+ <missing-glyph horiz-adv-x="512" />
9
+ <glyph unicode="&#x20;" horiz-adv-x="256" d="" />
10
+ <glyph unicode="&#x21;" glyph-name="madgex-icon-librarySVG-38" d="M256.016 385.024c-141.408 0-256.016-88.176-256.016-196.896 0-51.568 26-98.32 68.112-133.424l-68.112-119.728 160.56 70.528c29.504-9.136 61.696-14.256 95.456-14.256 141.44 0 255.984 88.144 255.984 196.88 0 108.72-114.56 196.896-255.984 196.896zM288 75.984c0-7.184-5.808-12.992-12.992-12.992h-26c-7.184 0-12.992 5.808-12.992 12.992v26c0 7.184 5.808 12.992 12.992 12.992h26c7.184 0 12.992-5.808 12.992-12.992v-26zM288 179.984c0-7.184-5.808-12.992-12.992-12.992h-26c-7.184 0-12.992 5.808-12.992 12.992v130c0 7.168 5.808 12.992 12.992 12.992h26c7.184 0 12.992-5.824 12.992-12.992v-130z" />
11
+ <glyph unicode="&#x2a;" glyph-name="madgex-icon-librarySVG-24" d="M391.022 160.563l120.416 69.529-67.507 116.943-120.413-69.53v138.495h-135.033v-138.495l-120.413 69.53-67.508-116.943 120.417-69.529-120.415-69.529 67.507-116.943 120.414 69.529v-139.62h135.033v139.62l120.413-69.529 67.509 116.943z" />
12
+ <glyph unicode="&#x2b;" glyph-name="madgex-icon-librarySVG-25" horiz-adv-x="516" d="M467.654 216.441h-153.197v153.197h-112.882v-153.197h-153.197v-112.882h153.197v-153.197h112.882v153.197h153.197z" />
13
+ <glyph unicode="&#x2d;" glyph-name="madgex-icon-librarySVG-23" d="M48 224h416v-112h-416v112z" />
14
+ <glyph unicode="&#x42;" glyph-name="madgex-icon-librarySVG-02" d="M0 310.576l104.144-83.248 151.856 93.616-105.328 87.856-150.672-98.224zM0 144.064l104.144 83.248 151.856-93.616-105.328-87.824-150.672 98.192zM512 144.064l-104.128 83.248-151.872-93.616 105.408-87.824 150.592 98.192zM512 310.576l-104.128-83.248-151.872 93.616 105.408 87.856 150.592-98.224zM407.248 34.848l-45.2-29.504-105.36 87.328v0.512l-0.336-0.24-0.32 0.24v-0.512l-105.328-87.328-45.248 29.504v-33.056l150.592-90.192v-0.368l0.32 0.208 0.336-0.208v0.368l150.576 90.192v33.056z" />
15
+ <glyph unicode="&#x43;" glyph-name="madgex-icon-librarySVG-44" d="M512 0v384h-512v-384h192v-64h-96v-32h320v32h-96v64h192zM64 320h384v-256h-384v256z" />
16
+ <glyph unicode="&#x44;" glyph-name="madgex-icon-librarySVG-03" d="M166.56 59.184l-73.12-126.624 344.592 0.064 73.968 127.504-345.44-0.944zM512 89.904l-173.296 297.104-140.304 0.432 168.288-297.952 145.312 0.416zM242.16 249.52l-69.408 122.864-172.752-299.056 68.096-125.232 174.064 301.424z" />
17
+ <glyph unicode="&#x45;" glyph-name="events" horiz-adv-x="455" d="M395.2 342.4v73.6h-115.2v-73.6h-107.2v73.6h-115.2v-73.6h-57.6v-438.4h454.4v438.4h-59.2zM308.8 387.2h57.6v-140.8h-57.6v140.8zM86.4 387.2h57.6v-140.8h-57.6v140.8zM396.8-38.4h-339.2v246.4h339.2v-246.4zM163.2 115.2l-20.8 16c12.8 19.2 25.6 28.8 49.6 28.8 28.8 0 46.4-16 46.4-41.6 0-22.4-11.2-33.6-35.2-51.2l-22.4-17.6h59.2v-25.6h-99.2v24l44.8 36.8c16 14.4 22.4 20.8 22.4 32s-8 17.6-17.6 17.6c-11.2 0-17.6-6.4-27.2-19.2zM292.8 158.4h20.8v-134.4h-28.8v105.6l-24-6.4-6.4 24 38.4 11.2z" />
18
+ <glyph unicode="&#x46;" glyph-name="madgex-icon-librarySVG-20" d="M284.576-96v233.552h78.4l11.744 91.024h-90.128v58.112c0 26.352 7.312 44.304 45.104 44.304l48.192 0.016v81.408c-8.336 1.104-36.944 3.584-70.24 3.584-69.488 0-117.056-42.416-117.056-120.304v-67.12h-78.592v-91.024h78.592v-233.552h93.984z" />
19
+ <glyph unicode="&#x47;" glyph-name="google-plus" d="M512 181.334h-53.334v53.333h-42.666v-53.334h-53.334v-42.666h53.334v-53.334h42.666v53.334h53.334zM170.667 192v-66.56h93.013c-7.147-40.106-41.92-69.334-93.013-69.334-56.32 0-102.080 47.68-102.080 104s45.76 103.893 102.080 103.893c25.387 0 48.107-8.746 66.026-25.813v-0.107l48.107 48.107c-29.547 27.52-68.053 44.48-114.133 44.48-94.293 0-170.667-76.374-170.667-170.667s76.374-170.667 170.667-170.667c98.56 0 163.84 69.334 163.84 166.827 0 12.48-1.173 24.427-3.307 35.84 0 0-160.534 0-160.534 0z" />
20
+ <glyph unicode="&#x4c;" glyph-name="madgex-icon-librarySVG-21" d="M23.904 240.48h99.52v-320.080h-99.52v320.080zM73.664 399.6c31.808 0 57.648-25.84 57.648-57.664 0-31.856-25.84-57.696-57.648-57.696-31.888 0-57.664 25.84-57.664 57.696 0 31.808 25.776 57.664 57.664 57.664zM185.808 240.48h95.44v-43.712h1.36c13.28 25.152 45.744 51.696 94.144 51.696 100.656 0 119.264-66.272 119.264-152.496v-175.568h-99.36v155.648c0 37.136-0.72 84.88-51.712 84.88-51.776 0-59.664-40.432-59.664-82.192v-158.336h-99.456v320.080z" />
21
+ <glyph unicode="&#x50;" glyph-name="madgex-icon-librarySVG-29" d="M255.856 151.36c0.352 1.408 0.672 2.736 0.992 4.208 0.336 1.824 7.872 44.992 5.744 60.368-0.336 2.4-0.528 3.088-1.248 5.168l-0.736 1.856c-3.344 7.728-9.136 12.176-16.272 12.176-0.016 0-0.016 0-0.032 0l-4.048 0.128c-9.056 0-16.528-4.896-18.592-12.208-4.912-18.096-0.128-44.256 8.624-77.904l-1.744-4.272c-6.304-15.344-14.16-30.72-21.072-44.288l-0.912-1.792c-6.656-13.008-13.168-25.040-19.376-35.744l-5.168-2.736c-0.464-0.24-11.36-6-13.904-7.536-22.56-13.488-36.992-28.512-39.6-41.232-1.008-5.024-0.096-11.552 5.728-14.864l6.032-3.024c3.2-1.6 6.56-2.4 10-2.4 16.832 0 34.704 18.512 59.696 61.856 26.912 8.672 57.456 15.936 84.336 20.048 21.856-12.096 47.712-20.16 64.736-20.16 3.392 0 6.192 0.32 8.544 0.96 4.112 1.072 7.6 3.472 9.776 6.752 3.456 5.2 4.704 12.464 3.632 21.056-0.464 3.264-2.8 6.528-4.8 8.48-5.744 5.664-17.232 8.528-35.088 8.768l-1.968 0.016c-10.624 0-23.088-0.944-36.112-2.704-5.488 3.168-11.52 6.896-16.112 11.216-13.056 12.224-24.048 29.152-31.056 47.808zM244.768 206.048c-0.032 2.464 0.016 5.248 0.144 7.744 0.896-3.376 1.648-8.16 1.76-14.24 0.080-3.744-0.176-7.248-0.736-10.544-0.768 5.936-1.152 12.096-1.152 16.992v0.048zM222.896 73.6c1.776 3.232 3.584 6.56 5.392 9.984 7.248 13.696 12.192 24.8 15.648 33.136 7.248-11.664 15.824-21.856 25.584-30.4-17.104-3.664-32.496-7.84-46.624-12.72zM360.384 71.328c1.28-0.336 2.272-0.688 2.992-1.024-5.248-0.64-11.264 0.416-19.104 3.088 6.192-0.032 8.896-0.208 16.112-2.064zM355.472 416h-307.472v-512h416v398.304l-108.528 113.696zM350.544 348.768l48.896-50.928h-48.896v50.928zM410.176-40.608h-308.368v392.8h194.912v-109.728h113.456v-283.072z" />
22
+ <glyph unicode="&#x53;" glyph-name="madgex-icon-librarySVG_Artboard-1" horiz-adv-x="640" d="M207.488-26.944c-38.672 9.648-60.336 40.464-60.384 86.080-0.048 14.576 1.056 21.712 4.704 31.040 8.96 23.040 32.544 40.416 63.776 46.768 15.456 3.2 20.256 6.544 20.256 14.496 0 2.512 1.824 9.872 4.064 16.464 10.24 29.712 29.168 54.544 49.456 64.736 21.12 10.56 31.856 12.976 57.456 12.848 36.384-0.224 54.576-8.144 80.048-34.832l13.984-14.672 12.48 4.384c60.624 20.896 121.008-14.816 125.856-74.416l1.328-16.368 11.936-4.208c34.096-12.256 50.096-37.856 47.216-75.616-1.92-24.544-13.392-44.304-31.68-54.032l-8.592-4.576-190.672-0.368c-146.592-0.336-193.136 0.256-201.232 2.272v0zM64.544-0.576c-22.576 5.344-46.576 25.328-57.872 48.176-6.256 12.896-6.672 14.816-6.672 37.712 0 21.808 0.544 25.328 5.584 36.112 10.736 22.864 31.216 39.312 56.912 45.808 5.488 1.424 10.56 3.568 11.376 4.848 0.784 1.28 1.696 8.416 1.968 15.728 1.776 45.616 31.68 85.888 73.504 98.784 22.576 6.944 51.024 5.296 75.568-4.528 7.776-3.152 6.896-3.792 23.456 17.776 9.696 12.8 29.392 28.656 45.536 36.752 17.456 8.736 35.472 12.752 57.184 12.704 60.48-0.176 112.592-37.984 131.792-95.728 6.176-18.464 5.856-23.584-1.376-23.776-3.152-0.048-12.304-1.776-20.256-3.84l-14.352-3.744-13.12 13.072c-37.072 37.168-97.648 45.168-149.168 19.744-20.528-10.096-37.024-24.64-49.552-43.616-8.864-13.488-20.256-38.72-20.256-44.944 0-4.48-3.568-6.72-18.976-11.744-47.536-15.584-75.296-51.568-75.296-97.648 0.048-16.816 4.336-37.344 10.416-49.136 2.192-4.384 3.472-8.592 2.736-9.28-1.744-1.84-60.992-1.248-69.136 0.768v0z" />
23
+ <glyph unicode="&#x54;" glyph-name="madgex-icon-librarySVG-17" d="M512 324.256c-18.784-8.368-39.056-14.048-60.288-16.544 21.712 12.992 38.288 33.552 46.192 58.176-20.304-12.080-42.816-20.816-66.688-25.568-19.232 20.368-46.464 33.2-76.656 33.2-57.984 0-105.104-47.056-105.104-105.072 0-8.176 0.96-16.208 2.688-23.904-87.264 4.352-164.672 46.176-216.464 109.776-9.024-15.552-14.192-33.6-14.192-52.848 0-36.464 18.464-68.608 46.752-87.424-17.296 0.576-33.52 5.312-47.664 13.072 0-0.448 0-0.896 0-1.328 0-50.832 36.224-93.264 84.288-102.96-8.88-2.352-18.064-3.648-27.68-3.648-6.8 0-13.328 0.624-19.728 1.888 13.296-41.744 52.176-72.112 98.064-72.96-35.888-28.192-81.232-44.928-130.496-44.928-8.4 0-16.816 0.464-25.024 1.424 46.48-29.776 101.696-47.184 161.072-47.184 193.232 0 298.8 160.096 298.8 298.88 0 4.576-0.064 9.104-0.32 13.568 20.512 14.8 38.4 33.344 52.448 54.384z" />
24
+ <glyph unicode="&#x56;" glyph-name="video" d="M412.8 224l-28.8-22.4v84.8c0 8-6.4 14.4-12.8 14.4h-342.4c-6.4 0-12.8-6.4-12.8-14.4v-254.4c0-8 6.4-14.4 12.8-14.4h342.4c6.4 0 12.8 6.4 12.8 14.4v0 84.8l28.8-22.4 83.2-64v256l-83.2-62.4zM126.4 100.8c-33.6 0-59.2 27.2-59.2 59.2s27.2 59.2 59.2 59.2 59.2-27.2 59.2-59.2-25.6-59.2-59.2-59.2zM281.6 100.8c-33.6 0-59.2 27.2-59.2 59.2s27.2 59.2 59.2 59.2 59.2-27.2 59.2-59.2-27.2-59.2-59.2-59.2z" />
25
+ <glyph unicode="&#x57;" glyph-name="madgex-icon-librarySVG-30" d="M355.472 416h-307.472v-512h416v398.304l-108.528 113.696zM350.544 348.768l48.896-50.928h-48.896v50.928zM410.176-40.608h-308.368v392.8h194.912v-109.728h113.456v-283.072zM236.496 207.408l-28.96-119.456-21.696 119.456h-41.84l42.464-192.272h40.88l28.656 113.696 25.632-113.696h37.68l48.688 192.272h-64.016v-34.496h16.608l-19.152-84.96-24.912 119.456z" />
26
+ <glyph unicode="&#x63;" glyph-name="cart" d="M508.464-52.208c0-24.186-19.606-43.792-43.792-43.792s-43.792 19.606-43.792 43.792c0 24.186 19.606 43.792 43.792 43.792s43.792-19.606 43.792-43.792zM241.12-51.792c0-24.186-19.607-43.792-43.792-43.792s-43.792 19.606-43.792 43.792c0 24.186 19.607 43.792 43.792 43.792s43.792-19.606 43.792-43.792zM464 126.144h-266.4l-27.504 196.624 293.904-58.656zM512 29.328h-396.912l-46.016 316.96-69.072 16.384v53.328l112.272-31.632 44.64-307.040h355.088z" />
27
+ <glyph unicode="&#x72;" glyph-name="madgex-icon-librarySVG-45" d="M127.984 128.016c0 17.68 14.32 32 32 32s32-14.32 32-32c0-17.68-14.32-32-32-32s-32 14.32-32 32zM319.984 128.016c0 17.68 14.32 32 32 32s32-14.32 32-32c0-17.68-14.32-32-32-32s-32 14.32-32 32zM321.536 59.632c8.24 6.496 20.192 5.072 26.688-3.168s5.072-20.192-3.168-26.688c-22.944-18.080-57.904-29.76-89.072-29.76s-66.128 11.68-89.072 29.76c-8.24 6.496-9.664 18.448-3.168 26.688s18.448 9.664 26.688 3.168c13.216-10.416 39.36-21.616 65.552-21.616s52.336 11.2 65.552 21.616zM511.984 192.016c0 35.344-28.656 64-64 64-24.064 0-44.992-13.28-55.92-32.912-32.896 18-72.976 29.616-116.64 32.304l38.192 85.76 73.104-21.104c6.576-18.672 24.352-32.064 45.28-32.064 26.512 0 48 21.488 48 48s-21.488 48-48 48c-18.272 0-34.176-10.224-42.272-25.264l-81.456 23.52c-9.12 2.624-18.768-1.856-22.624-10.528l-51.888-116.512c-42.576-2.992-81.632-14.512-113.824-32.112-10.928 19.632-31.888 32.896-55.936 32.896-35.344 0-64-28.656-64-64 0-26.16 15.696-48.624 38.192-58.544-4.032-12.016-6.192-24.56-6.192-37.456 0-88.368 100.288-160 224-160s224 71.632 224 160c0 12.896-2.144 25.424-6.192 37.44 22.48 9.92 38.192 32.4 38.192 58.56l-0.016 0.016zM431.984 354.016c9.936 0 18-8.064 18-18s-8.064-18-18-18-18 8.064-18 18 8.064 18 18 18zM31.984 192.016c0 17.648 14.352 32 32 32 12.752 0 23.792-7.504 28.928-18.32-16.72-12.688-30.576-27.312-40.832-43.376-11.76 4.736-20.096 16.256-20.096 29.696zM255.984-25.984c-102.72 0-186 54.624-186 122s83.28 122 186 122c102.72 0 186-54.624 186-122s-83.28-122-186-122zM459.888 162.32c-10.256 16.048-24.112 30.688-40.832 43.376 5.136 10.816 16.176 18.32 28.928 18.32 17.648 0 32-14.352 32-32 0-13.44-8.32-24.96-20.096-29.696z" />
28
+ <glyph unicode="&#x78;" glyph-name="close-skinny" d="M380.8 329.6l-124.8-124.8-123.2 124.8-46.4-44.8 124.8-124.8-124.8-124.8 46.4-44.8 123.2 124.8 124.8-124.8 44.8 44.8-123.2 124.8 123.2 124.8z" />
29
+ <glyph unicode="&#x2190;" glyph-name="madgex-icon-librarySVG-16" d="M48 160l208-208v130h208v156h-208v130l-208-208z" />
30
+ <glyph unicode="&#x2191;" glyph-name="madgex-icon-librarySVG-13" d="M256 368l-208-208h130v-208h156v208h130l-208 208z" />
31
+ <glyph unicode="&#x2192;" glyph-name="madgex-icon-librarySVG-15" d="M464 160l-208 208v-130h-208v-156h208v-130l208 208z" />
32
+ <glyph unicode="&#x2193;" glyph-name="madgex-icon-librarySVG-14" d="M256-48l208 208h-130v208h-156v-208h-130l208-208z" />
33
+ <glyph unicode="&#x2197;" glyph-name="madgex-icon-librarySVG-34" d="M240-16h-160v160h64v80h-144v-320h320v144h-80zM432 336v-160h-160v160h160M512 416h-320v-320h320v320z" />
34
+ <glyph unicode="&#x21b1;" glyph-name="share" d="M364.928 13.44h-255.472v255.472h131.648v45.472h-177.104v-346.384h346.384v177.104h-45.456zM308.496 352v-45.456h62.192l-161.168-161.184 32.144-32.128 160.88 160.896v-61.632h45.456v139.504z" />
35
+ <glyph unicode="&#x2261;" glyph-name="filter" horiz-adv-x="455" d="M312.471 325.281v48.052h-47.218v-48.052h-227.328v-48.185h227.328v-45.985h47.218v45.985h104.714v48.185zM360.24 87.884h-47.578v-45.985h-274.736v-48.166h274.736v-47.066h47.578v47.066h56.946v48.166h-56.946zM154.055 231.111h-46.82v-45.985h-69.309v-48.185h69.309v-45.985h46.82v45.985h263.13v48.185h-263.13z" />
36
+ <glyph unicode="&#x2315;" glyph-name="madgex-icon-librarySVG-35" d="M307.392 416c-112.992 0-204.608-91.616-204.608-204.608 0-45.424 14.976-87.232 40.016-121.184l-36.816-36.816-10.528 10.512-95.472-95.504 60.272-60.272 95.504 95.536-10.496 10.496 36.192 36.208c34.736-27.2 78.384-43.568 125.936-43.568 112.992 0 204.608 91.616 204.608 204.608s-91.6 204.592-204.608 204.592zM307.392 73.152c-76.224 0-138.24 62.016-138.24 138.24s62.016 138.24 138.24 138.24c76.224 0 138.24-62.016 138.24-138.24 0.016-76.224-62-138.24-138.24-138.24z" />
37
+ <glyph unicode="&#x231a;" glyph-name="madgex-icon-librarySVG-33" d="M329.376 41.376l-105.376 105.376v141.248h64v-114.752l86.624-86.624-45.248-45.248zM256 416c-141.392 0-256-114.608-256-256s114.608-256 256-256 256 114.608 256 256-114.608 256-256 256zM256-32c-106.032 0-192 85.968-192 192s85.968 192 192 192 192-85.968 192-192-85.968-192-192-192z" />
38
+ <glyph unicode="&#x25b2;" glyph-name="madgex-icon-librarySVG-09" d="M64 0l192 320 192-320h-384z" />
39
+ <glyph unicode="&#x25b6;" glyph-name="madgex-icon-librarySVG-11" d="M128-32l320 192-320 192v-384z" />
40
+ <glyph unicode="&#x25bc;" glyph-name="madgex-icon-librarySVG-10" d="M448 320l-192-320-192 320h384z" />
41
+ <glyph unicode="&#x25c4;" glyph-name="madgex-icon-librarySVG-12" d="M384-32l-320 192 320 192v-384z" />
42
+ <glyph unicode="&#x2605;" glyph-name="madgex-icon-librarySVG-06" d="M256 403.472l79.104-160.288 176.896-25.712-128-124.768 30.224-176.176-158.224 83.184-158.224-83.184 30.224 176.176-128 124.768 176.896 25.712z" />
43
+ <glyph unicode="&#x2606;" glyph-name="madgex-icon-librarySVG-07" d="M256 313.088l52.544-106.48 117.504-17.072-85.024-82.864 3.552-20.72 16.512-96.288-105.088 55.264-105.088-55.264 20.064 117.008-85.024 82.864 117.504 17.072 52.544 106.48M256 403.472l-79.104-160.288-176.896-25.696 128-124.768-30.224-176.176 158.224 83.184 158.224-83.184-30.224 176.176 128 124.768-176.896 25.696-79.104 160.288z" />
44
+ <glyph unicode="&#x260e;" glyph-name="phone1" d="M447.904 310.8c-34.432 28.864-79.904 57.2-191.904 57.2s-157.472-28.336-191.904-57.2c-18.944-15.904-32.096-27.552-32.096-52.192v-29.28c0-15.328 12.528-27.728 28-27.728h56c15.472 0 28 12.56 28 27.728s2.464 27.952 15.744 45.072c13.136 16.896 40.256 38.128 96.256 36.992 56 1.136 83.568-20.096 96.688-36.992 13.296-17.12 16.192-29.904 16.192-45.072s12.528-27.728 28-27.728h56c15.472 0 27.12 12.4 27.12 27.728v29.28c0 24.64-13.152 36.288-32.096 52.192zM312 62.928c0-30.636-25.072-55.472-56-55.472s-56 24.836-56 55.472c0 30.637 25.072 55.472 56 55.472s56-24.836 56-55.472zM353.776 201.6h-13.776v34.672c0 11.488-12.528 20.8-28 20.8s-28-9.312-28-20.8v-34.672h-56v34.672c0 11.488-12.528 20.8-28 20.8s-28-9.312-28-20.8v-34.672h-13.104c-9.376 0-18.16-4.656-23.344-12.4-21.328-31.888-75.552-116.624-75.552-154v-55.472c0-15.328 12.544-27.728 28-27.728h336c15.456 0 28 12.4 28 27.728 0 23.296 0 52.864 0 52.864 0 47.936-54 127.664-75.408 157.376-5.264 7.296-13.792 11.632-22.816 11.632zM256-20.272c-46.32 0-84 37.328-84 83.2s37.68 83.2 84 83.2 84-37.328 84-83.2-37.68-83.2-84-83.2z" />
45
+ <glyph unicode="&#x2611;" glyph-name="madgex-icon-librarySVG-43" d="M256 416c-141.392 0-256-114.608-256-256s114.608-256 256-256 256 114.608 256 256-114.608 256-256 256zM209.36 25.6l-52.528 51.888 0.192 0.192-61.008 60.256 52.544 51.888 61.008-60.256 153.92 152.032 52.528-51.888-206.656-204.112z" />
46
+ <glyph unicode="&#x2612;" glyph-name="madgex-icon-librarySVG-36" d="M256 416c-141.392 0-256-114.608-256-256s114.608-256 256-256 256 114.608 256 256-114.608 256-256 256zM376 90.912l-50.912-50.912-69.088 69.088-69.088-69.088-50.912 50.912 69.088 69.088-69.088 69.088 50.912 50.912 69.088-69.088 69.088 69.088 50.912-50.912-69.088-69.088 69.088-69.088z" />
47
+ <glyph unicode="&#x2632;" glyph-name="madgex-icon-librarySVG-18" d="M480-63.984c0 247.408-200.576 447.984-448 447.984v-89.6c197.936 0 358.384-160.464 358.384-358.384h89.616zM300.8-63.984c0 148.448-120.336 268.784-268.8 268.784v-89.568c98.96 0 179.2-80.24 179.2-179.2h89.6zM121.616-63.984c0 49.488-40.112 89.6-89.6 89.6v-89.6h89.6z" />
48
+ <glyph unicode="&#x263a;" glyph-name="madgex-icon-librarySVG-04" d="M128 256c0-70.688 57.312-128 128-128s128 57.312 128 128-57.312 128-128 128-128-57.312-128-128zM384 96h-256c-70.688 0-128-57.312-128-128v-32h512v32c0 70.688-57.312 128-128 128z" />
49
+ <glyph unicode="&#x2709;" glyph-name="madgex-icon-librarySVG-05" d="M255.936 168.144l240.064 113.088v58.768h-480v-58.592l239.936-113.264zM256.064 101.808l-240.064 113.392v-235.2h480v234.848l-239.936-113.040z" />
50
+ <glyph unicode="&#x270e;" glyph-name="madgex-icon-librarySVG-27" d="M435.99 400.683l59.996-59.996-30.728-30.727-59.996 59.996 30.728 30.727zM450.738 295.473l-175.881-175.881-59.996 59.996 175.881 175.881 59.996-59.996zM417.248 152.256v-152.784h-322.496v322.512h152.784l78.752 78.736h-310.288v-480h480v310.288zM200 104.72h48l-48 48z" />
51
+ <glyph unicode="&#x2714;" glyph-name="madgex-icon-librarySVG-26" d="M416.496 334l-230.864-228.032-91.52 90.384-78.8-77.84 91.504-90.384-0.288-0.288 78.8-77.84 309.984 306.176z" />
52
+ <glyph unicode="&#x2731;" glyph-name="madgex-icon-librarySVG-32" d="M341.328 159.984c0 23.552-8.336 43.664-24.992 60.32s-36.768 24.992-60.336 24.992c-23.552 0-43.664-8.336-60.336-24.992s-24.992-36.768-24.992-60.32c0-23.552 8.336-43.664 24.992-60.32s36.768-24.992 60.336-24.992c23.552 0 43.664 8.336 60.336 24.992 16.656 16.656 24.992 36.768 24.992 60.32zM512 196.304v-73.984c0-2.656-0.896-5.216-2.672-7.664s-4-3.888-6.672-4.336l-61.68-9.328c-4.224-12-8.544-22.112-12.992-30.336 7.776-11.12 19.664-26.448 35.68-46 2.224-2.656 3.344-5.44 3.344-8.32s-1.008-5.44-3.008-7.664c-6-8.224-16.992-20.224-33.008-36-16-15.776-26.448-23.664-31.344-23.664-2.656 0-5.552 1.008-8.656 3.008l-46 36c-9.776-5.12-19.888-9.344-30.336-12.672-3.552-30.224-6.784-50.896-9.664-61.984-1.552-6.224-5.552-9.328-12-9.328h-74c-3.104 0-5.84 0.944-8.176 2.832s-3.616 4.288-3.824 7.168l-9.328 61.328c-10.896 3.552-20.896 7.664-30 12.336l-47.008-35.664c-2.224-2-5.008-3.008-8.32-3.008-3.104 0-5.888 1.216-8.32 3.664-28 25.328-46.336 44-54.992 56-1.552 2.224-2.336 4.784-2.336 7.664 0 2.656 0.896 5.216 2.672 7.664 3.328 4.672 9.008 12.064 17.008 22.176s14 17.952 18 23.504c-6 11.12-10.56 22.112-13.664 33.008l-61.008 8.992c-2.88 0.448-5.216 1.84-7.008 4.16-1.776 2.32-2.672 4.944-2.672 7.84v73.984c0 2.656 0.896 5.216 2.672 7.664s3.888 3.888 6.336 4.336l62 9.328c3.104 10.224 7.44 20.432 12.992 30.672-8.88 12.672-20.784 28-35.68 46-2.224 2.656-3.344 5.328-3.344 8 0 2.224 1.008 4.784 3.008 7.664 5.776 8 16.72 19.952 32.832 35.84s26.624 23.84 31.504 23.84c2.88 0 5.776-1.12 8.656-3.344l46-35.664c9.776 5.12 19.888 9.344 30.336 12.672 3.552 30.224 6.784 50.896 9.664 61.984 1.552 6.224 5.552 9.328 12 9.328h74c3.104 0 5.84-0.944 8.176-2.832s3.616-4.288 3.824-7.168l9.328-61.328c10.896-3.552 20.896-7.664 30-12.336l47.344 35.664c2 2 4.672 3.008 8.016 3.008 2.88 0 5.664-1.12 8.32-3.344 28.672-26.448 47.008-45.328 54.992-56.672 1.552-1.776 2.336-4.224 2.336-7.328 0-2.656-0.896-5.216-2.672-7.664-3.328-4.672-9.008-12.064-17.008-22.176s-14-17.952-18-23.504c5.776-11.12 10.336-22 13.664-32.672l61.008-9.328c2.88-0.448 5.216-1.84 7.008-4.16 1.792-2.336 2.672-4.96 2.672-7.856z" />
53
+ <glyph unicode="&#x2750;" glyph-name="madgex-icon-librarySVG-31" d="M355.472 416h-307.472v-512h416v398.304l-108.528 113.696zM350.544 348.768l48.896-50.928h-48.896v50.928zM410.176-40.608h-308.352v392.8h194.912v-109.728h113.456v-283.072zM144 191.264h224v-32h-224v32zM144 127.264h224v-32h-224v32zM144 63.264h224v-32h-224v32z" />
54
+ <glyph unicode="&#x2934;" glyph-name="share-02" d="M346.833 232.667v-54.5h72.666v-217.999h-326.999v217.999h72.666v54.5h-127.166v-326.999h435.998v326.999zM365 301.699l-109 103.55-109-103.55 36.334-34.517 47.233 45.417v-234.349h50.866v234.349l47.233-45.417z" />
55
+ <glyph unicode="&#xe600;" glyph-name="datepicker" d="M432 336v80h-128v-80h-96v80h-128v-80h-48v-432h448v432h-48zM336 387.2h64v-115.2h-64v115.2zM112 384h64v-112h-64v112zM416-32h-320v256h320v-256zM192 128h-64v64h64v-64zM288 128h-64v64h64v-64zM384 128h-64v64h64v-64zM192 32h-64v64h64v-64zM288 32h-64v64h64v-64z" />
56
+ <glyph unicode="&#xe601;" glyph-name="globe-light" d="M105.040 217.216c0-0.896 0-1.776 0-2.672 2.080-1.44 6.944-0.992 6.096 2.672-1.184 0.96-5.008 0.96-6.096 0zM424.48 81.728c0.064 1.936 0.976 2.864 0.544 5.248 3.52 2.56 3.216 5.6 4.608 10.896 2.080 7.792 11.44 21.056 3.472 27.008-2.928-2.672-0.848-4.816-2.32-7.488-2.384-4.448-8.88-4.992-11.488-8.624-2.88-4.016-3.776-11.328-1.696-14.976-4.208-4.704-6.736-11.936-2.928-18.928 5.296 0.224 6.88 4.24 9.808 6.864zM385.392 278.848c-1.040 1.328-1.888 2.864-3.28 3.904 1.776 2.816 2.928 6.192 4.912 8.816 2.624 0.192 2.496-2.24 5.536-1.632-0.672-1.632-0.192-1.888 0.496-3.328 2.432 1.2 4.912-0.048 7.232-0.544 0.432 2.128-1.2 2.128-2.24 2.784 0.848 1.088 3.872 0.112 4.992 1.088-0.192-1.28 0.112-2.128 1.104-2.24 0.048-1.152-1.936-0.256-2.736-0.496 0.352-1.152 1.040-1.936 1.776-2.72-0.784-0.048-1.584-0.192-2.32-0.544-0.304-3.968 1.936-5.248 4.064-6.688 1.328 1.088 3.712 1.152 5.040 2.32 1.392-1.104 2.512-2.432 2.928-4.512-9.872-0.272-15.52 7.152-27.504 3.792zM314.352 314.144c1.696 0.784 0.784-3.2-0.544-2.736-0.256 1.312 0.976 1.2 0.544 2.736zM366.704 245.856c-8.704 3.040-13.632 9.856-22.032 13.216 1.28 4.496-2.576 5.296-1.104 8.272-1.632 0.608-3.216 1.152-4.448 2.192-1.648-0.192-2.432-1.232-3.824-1.696-6.88 0.848-12.976 1.44-19.312 0-5.904-1.28-11.872-6.048-17.584-1.088 7.136 0.432 12.192 2.272 15.952 6.096-1.232 9.312 6.992 9.2 8.272 16 5.248-1.936 9.264-0.544 13.216 1.632 4.448-6.928 14.48-8.272 16.496-17.632-2.864-0.496-5.344-1.392-8.208 0.544-1.040-3.216 2.56-6.144 4.384-8.272 1.696-0.432 2.032 0.608 3.28 0.544 0.24 1.936-0.192 3.12-0.544 4.448 1.632 0 2.816-1.632 3.904-0.608 0.304 1.696 1.52 2.56 3.264 2.784 0.352 2.032-1.216 2.128-1.088 3.824 1.824 0 2.672-2.624 4.368-1.088 0.192 4.912-5.248 4.32-6 8.272 3.28 0.976 4.32-0.448 6.576-1.696 1.344-9.072 4.704-16.192 12.128-19.232 0.896-0.448 0.896 2.56 0 2.176 0.544 1.696 1.52-0.608 2.176-0.544 1.344-0.192-0.304 2.48 1.696 1.632-1.392 4.4-2.24 5.952-2.24 11.552 4.32 0 3.952-6.688 3.872-9.376 2.56-3.52 6.336-8.528 12.672-6.592 1.936 0.112 1.776-1.888 3.28-2.176 2.384 0 3.52 1.28 6.096 1.088-0.608-5.248-0.112-9.376-1.088-14.864-10.784 0.848-21.296 1.696-26.96 8.768-1.632-1.632-6.336-0.304-7.728-2.128-0.448-2.624 0.832-3.52 0.528-6.048zM425.568 271.024c0-0.112 0-0.24 0.064-0.352 0.432-0.608 0.896-1.2 1.328-1.824 0.24-0.352 0.448-0.736 0.608-1.040 1.344-2.080 2.384-4.4 2.432-7.616-8.336-0.352-11.584 6.096-8.768 13.76-3.52 3.52-6.832 8.816-8.224 14.112 4.448-5.44 8.64-11.152 12.56-17.040zM440.48 226.576c-1.776-2.672-2.432-6.336-7.184-6.096-1.216 1.536-1.584 3.968-1.632 6.64-1.040 1.040-2.016 0.192-3.28 0-0.896 3.52-3.168 5.648-3.36 9.92 5.952-1.648 4.704-10.352 10.544-12.128 2.336-0.16 2.768 1.616 4.912 1.664zM123.84 185.856c-0.064 1.344 0.848 1.648 1.088 2.736 2.016-0.416 0.688-2.976-1.088-2.736zM89.504 220.624c-0.112-1.28 0.784-1.536 0.672-2.736-1.888 0.112-3.664 0.048-3.36-2.016 1.232-3.216 4.448-1.696 6.816-2.976-4.256-0.544-3.6-10.352-10.592-8.96-0.544 1.648-1.040 3.472-1.344 5.296 0.608 0.112 1.392 0.24 2.432 0.544-0.608 3.408-1.936 4.256-3.104 3.968-0.112 1.584-0.064 3.216 0.048 4.8 3.712-0.176 5.712 1.344 8.432 2.080zM102.368 281.584c-0.976 0.432-0.048 1.040 0 1.696 0.96-0.384 0.048-0.96 0-1.696zM104.016 283.856c0.784 1.040 2.32 1.328 2.72 2.72 1.776-0.496 2.88-1.52 2.736-3.824-1.888 0.432-2.080-0.848-3.824-0.56 0.592 1.712 0.544 1.792-1.632 1.664zM116.112 278.848c-2.384 2.128-2.928-1.152-3.264-2.736-0.56 1.648-1.344 3.12-1.696 4.992 1.696-0.784 2.016 0.24 4.448 0-0.096-1.024 0.64-1.152 0.512-2.256zM120.496 299.808c-1.888 2.928-0.656 6.656 0 9.92 0.048 0.352-0.112 0.496-0.352 0.544 3.472 3.136 7.072 6.096 10.704 9.008-0.688-5.216-4.704-7.104-7.616-10.096 1.392-3.024 1.648-9.104-2.736-9.376zM148.64 290.496c1.28-0.192 2.272-0.656 3.264-1.152-0.48-1.168-4.016-0.736-3.264 1.152zM145.872 297.072c-1.536 0.496 0.496 1.936 0.496 2.768 2.128-0.272 2.736 1.008 4.992 0.544-0.304-2.656-4.016-1.888-5.488-3.312zM328.176-27.84c-3.52 0.432-4.608 2.24-7.728 0.544 0.112 3.040-5.296 0.544-5.552 3.328-8.768-1.152-16.992-2.080-23.632-5.552-2.432-1.28-4.208-3.904-6.64-4.448-1.648-0.304-3.968 0.784-5.552 0.544-4.864-0.608-12.976-7.296-18.688-8.272-2.624-0.352-5.296 0.352-8.32 0-0.656-0.304-1.456-0.544-2.192-0.848-17.584 0.544-34.576 3.28-50.688 8.032 0.448 0.672 0.896 1.328 0.608 2.816-8.704 5.248-14.864 13.024-23.136 18.736-0.192 4.208 3.36 4.704 6.64 5.456-2.192 5.248-13.712 2.976-13.216-4.368 0.112-2.512 1.888-2.32 2.176-5.552-2.48 1.152-2.864 4.512-6.096 4.912 1.536 1.040 1.28 3.776-1.088 3.904-2.56 0.496-1.040-3.056-2.176-3.904-2.736 0-2.672 0.608-4.928 0 0.256-3.408 4.752-4.56 7.136-2.72 1.152-1.936 1.152-2.976 0-4.992 2.080-3.040 7.184-2.736 10.464-2.128 1.088-0.192-0.112 1.536-0.544 1.632 1.152 1.44 2.432-1.584 2.736-2.816-1.648-0.736-3.36-1.088-4.992-1.28-5.792 2.624-11.392 5.488-16.848 8.576-0.608 1.328-2.080 1.888-3.712 2.176-1.152 0.608-2.272 1.344-3.36 2.032 0 0 0 0 0 0.048-0.064 0-0.064 0-0.192 0.064-14.816 9.264-28.24 20.32-40.176 32.992-0.352 0.736-0.928 1.328-1.584 1.632-33.232 36.112-53.504 84.304-53.504 137.184 0 20.16 2.928 39.552 8.416 57.952 0.784-2.32 0.672-5.552 2.56-6.736 3.36 2.016-0.448 7.664-0.992 11.632 0 0.112 0.064 0.304 0.112 0.432 1.28-3.52 4.256-6.688 5.248-10.4 0.544-2.128-0.736-3.6-0.544-5.488 0.672-6.592 5.792-7.328 11.552-11.632 2.736-0.688 2.32 1.696 4.4 1.632 1.584-7.376 12.352-5.664 12.72-14.224 1.104-1.824 3.664-2.192 3.776-4.992 2.928 0.544 2.624-2.128 6.096-2.272 1.040 0.848 0.112 3.6 2.192 3.36 2.816-2.384 2.976-7.376 2.736-12.672-2.032-5.056-8.816-12.288-3.824-17.648-4.272-4.4 0.24-11.488 3.824-13.216 2.128-8.032 5.296-14.912 9.92-20.32 4.64-0.976 6.432-4.608 8.816-7.728 0.064-11.696 1.584-21.792 2.736-31.952 0.736-5.552-1.28-11.088-1.040-16.496 0.304-7.488 5.84-12.336 4.928-20.4-0.896-0.048-2.128 0.256-2.192-0.544-0.896-3.36 2.128-2.624 2.736-4.448 2.384-7.84 4.016-16.496 11.584-19.232 1.696-0.256 0.432 2.56 1.696 2.672 0.544 1.472 0.192-4.704-1.632-4.4 2.384-3.472 9.712-5.408 14.304-3.824-4.864 3.52-9.376 7.488-12.128 13.216 1.584 2.432 2.976 5.104 4.4 7.68-0.304 2.672-3.104 2.72-4.4 4.448-0.496 2.32 2.432 1.216 3.28 2.176-0.848 0.784-0.496 2.816-0.544 4.448 0.688 0.736 2.672 0.192 2.72 1.632 0.256 2.736-4.384 0.736-3.824 3.824 1.392-0.496 2.928-0.736 4.912-0.544 0.896 1.888 0 3.664 0 5.456 8.16-2.784 12.784 3.36 8.816 9.376 1.584-0.048 3.6 0.304 4.448-0.544 6.448 3.776 8.576 11.936 13.216 17.632 0.192 2.56-1.040 3.776-0.544 6.592 2.080 3.408 6.496 4.448 9.312 7.184 2.512 0.24 4.704-0.784 6.64 0 5.056 2.016 7.12 17.584 6.096 26.4 2.080 1.648 12.64 12.528 10.4 18.736-2.432 6.832-17.392 13.824-27.504 12.64-2.56 5.888-9.264 5.104-14.304 7.728-1.888 9.856-5.952 17.536-18.736 16.496-2.48 5.488-10.288 7.664-11.008 13.216-3.52 0.448-5.952-0.24-7.136-2.176-2.064 1.328-3.104 0.736-6.096 0.544-0.976 2.016-3.104 2.72-3.824 4.912-2.56 0-2.32-1.824-3.36 0.608-4.56-2.080-9.12-4.064-10.464-9.376-2.016 1.040-6.448 2.432-9.856 0-5.904 4.8 3.664 21.408-10.464 17.088 1.040 4.56 2.976 8.336 3.824 13.168-0.656 0.496-1.328 0.736-1.888 0.992 1.584 2.016 4.208 2.928 8.16 2.56 0 7.616-8.224 7.728-14.176 6.032-0.992 1.776-3.28 3.824-6.048 5.664 1.344 2.176 3.168 3.824 5.664 4.64 2.672 0.24 2.736-2.080 4.992-2.192 1.44 0.544 1.824 2.272 1.632 4.448 4.208 0.848 4.704-0.992 8.272 0 0.496-4.608 1.44-8.88 3.264-12.128 6.208 5.488-0.848 14.96 3.28 21.44 3.040 4.704 8.768 4.704 10.464 10.464 0.304 1.824-0.352 2.56-0.544 3.824 3.28 2.080 4.272 6.448 6.096 10 3.52 1.2 4.512 4.992 8.224 6 0.736 2.192-1.776 1.088-1.088 3.28 1.584 3.52 6.384 3.952 8.816 6.576 0.736-0.848-0.496-3.216 1.088-4.4 3.52 2.496 8.224 3.904 11.552 6.64 0.496 2.432-0.976 3.024-2.72 3.264 0.048 1.584 2.32 0.992 2.176 2.736-0.352 1.936-4.208 0.608-5.456 1.632 0.432 4.896 5.104 2.192 8.224 4.4 0.544 2.768-3.472 0.96-4.4 2.24 3.408 1.888 9.44 1.216 9.92 6.096 4.912 0.736 7.488 3.84 8.768 8.24-0.256 2.848-4.272 1.888-3.824 5.52-2.016-0.192-3.6 0.080-4.912 0.528-1.28 5.344-2.672 10.56-4.448 15.456-1.584-0.224-2.56-1.008-3.36-2.032-0.112 0.048-0.192 0.16-0.304 0.192-0.544-0.736-1.824-0.496-2.864 0.128 11.936 7.136 24.672 13.056 38.048 17.648 0.608-0.784 1.28-1.552 2.624-1.664-1.040-2.304-1.104-3.216 0.544-4.928 2.272-0.432 3.168 0.528 4.992 0.528 1.088-0.736 1.392-2.288 2.72-2.736 4.208 2.592 9.968 6.368 8.272 11.552 1.328 0.688 2.080 2.016 2.672 3.472 14.256 3.168 28.976 4.832 44.128 4.832 22.832 0 44.736-3.824 65.248-10.816-1.84-5.296 0.352-14.304 5.248-15.136 3.776-0.624 4.704 2.352 8.816 3.28 0.848-3.888 3.28-6.224 5.456-8.8 0.112-2.704-4.064-1.072-3.28-4.4 1.104-3.376 8.64-3.472 11.008-2.192 0.672 4.832 0.432 10.576 4.448 12.128 0.048 0.496 0.048 0.896 0 1.264 3.824-2.112 7.536-4.32 11.2-6.672 0.608-1.792 2.48-2.976 2.56-5.616-2.624-0.16-1.696 3.136-4.448 2.752-3.6-1.12-2.624-6.88-4.4-9.92-6.64 2.432-12.592-2.832-18.128 2.224 1.696 3.712-2.432 3.488-3.872 5.52 1.44 3.952 1.632 5.792 0 9.888-7.376-0.384-6.384-8.336-3.824-13.216-2.432-0.224-6.448-0.048-9.376-1.12-1.888-2.16-2.176-5.904-6.64-5.52-1.696 1.536 1.888 2.736 0 4.448-0.784 1.056-2.816 0.816-3.824 1.632-0.112 3.776-2.272 5.488-4.992 6.64 0.448 2.048 0.736 3.904-2.176 3.824-0.352 2.352 1.776 2.224 1.632 4.432-0.352 1.392-1.776 1.904-3.824 1.632-0.496 1.552 0.8 1.424 0.544 2.736-0.896 0.96-3.216 0.464-4.992 0.576-2.624-1.616-2.192-6.224-4.4-8.272-0.24-1.744 2.672-0.192 2.176-2.176 0.352-2.192-2.624-0.72-2.72 0-3.6-1.424-4.512-4.48-8.816-3.856 0.496-2.112 0.736-4.448 0.544-7.152 1.392-1.392 3.904-1.648 4.912-3.328 3.28 0.688 5.648 2.048 7.184 4.448 0 1.632 0 3.28 0 4.912 1.344 0.496 2.432 1.312 4.448 1.088-0.544-2.16 1.648-1.632 1.088-3.792-1.328 0.032-2.672 0.048-3.28-0.576-0.448-2.080 0.896-2.352 0.544-4.432-1.392 0.080-2.672 0.080-3.28-0.576 0.112-1.424 1.28-1.936 3.28-1.632-0.24-2.288-2.624-2.512-3.28-4.4 3.824-1.312 10.352-0.496 13.76 0.544-1.088-2.72 1.776-1.44 1.632-3.28-5.408 2.768-5.6-2.208-12.128-1.12-0.784-0.704-0.544-2.384-0.544-3.872 4.864-2.544 12.032-5.408 8.768-14.256-7.728-1.28-16.368 4.256-20.864-0.608 3.216-6.688-0.736-13.328 0.544-19.856 3.28-0.848 8.032-0.304 9.856-2.672-1.632-1.536-3.264-2.976-3.264-6.096-8.096-1.824-6.992-12.928-12.128-17.648-9.92-3.712-12.528-14.656-18.192-22.528 4.752-4.816 2.48-15.6-0.544-20.464 0.848-1.888 2.288-3.168 1.632-6.576 1.632-2.624 4.512-3.968 7.184-5.552 3.824-8.72 8.16-19.856 17.584-20.864 4.16-0.496 6.272 3.12 9.92 3.28 3.52 0.112 4.56-2.48 8.272-2.736 5.648 1.536 10.832 6.448 16.544 5.488 4.752-0.848 8.032-9.12 13.76-4.928 2.032-3.824 1.2-11.552-0.592-14.864 2.128-7.12 7.488-10.944 8.816-18.736 10.416-7.376-1.52-18.384-0.544-28.128 0.496-4.864 4.864-8.512 5.552-13.76 1.232-10.208 4.32-17.728 9.376-25.328 0.048-1.584-1.888-1.088-1.088-3.264 2.128-8.576 11.2 0.432 16.496-1.648 5.296 3.328 11.44 5.792 13.216 12.64 7.072 2.672 7.424 12.048 11.008 18.192 0.928 0 1.84 0 2.736 0 2.016 2.928 2.176 9.12 0 12.048 2.512 5.248 7.232 8.224 11.584 11.552 0.24 6.944 2.928 11.2 1.088 16.56-0.848 2.56-4.064 3.824-4.4 6.096-1.328 8.704 10.096 10.944 11.008 20.32 1.44 0.352 2.080 1.584 3.28 2.176 1.776 9.664 8.576 17.152 7.728 27.584-4.16-2.016-9.264-2.512-13.216-3.36-1.44 1.776 0.992 3.12 1.632 4.448-4.496 6.88-13.68 14.368-12.128 23.68-3.664 4.8-7.728 12.128-8.272 18.128 3.424 0.736 4.512-5.296 5.536-8.768 0.496-2.272 2.928-2.624 3.824-4.448 0.496-10.16 8.272-12.976 8.768-23.136 2.192-1.696 1.888-5.84 4.992-6.576 2.176-0.352 1.584 2.080 1.632 3.824 5.904 4.016 13.088 6.688 18.144 11.552 0 4.064 2.56 4.512 2.272 7.728-0.352 3.52-4.992 4.8-4.992 8.768 2.88-0.24 4.816-1.392 7.44-1.936 5.952-19.056 9.12-39.264 9.12-60.192 0-81.744-48.512-152.24-118.256-184.192-5.184 0.576-9.536 0.080-12.112-3.328zM476.448 244.224c-11.984 31.408-30.416 59.616-53.792 82.912-42.192 42.032-100.176 68.16-164.336 68.832-0.784 0-1.536 0.032-2.272 0.032-42.416 0-82.176-11.248-116.56-30.8-50.032-28.512-88.624-74.752-107.2-130.224-7.84-23.376-12.176-48.4-12.24-74.4 0-0.24 0-0.352 0-0.608 0-13.92 1.28-27.632 3.6-40.96 3.216-18.432 8.576-36.112 15.84-52.816 36.032-82.944 118.256-141.136 214.224-142.128 0.784 0 1.536-0.048 2.32-0.048 42.304 0 81.936 11.2 116.256 30.672 71.44 40.528 119.648 117.296 119.648 205.296 0.016 29.696-5.52 58.080-15.488 84.24z" />
57
+ <glyph unicode="&#xe602;" glyph-name="globe-dark" d="M269.008 165.984l-14.944-9.92-30.88 16.896 45.824-6.976zM274.576-62.72l-15.52 83.296-32.896 50.816 6.976 47.808-45.792 27.904-32.88 12.928-31.872 61.744c0 0 9.952 43.808 12.96 44.8 2.976 1.008-2 35.856-2 35.856l-55.744-9.952-0.352 1.696c9.296 12.32 19.776 23.696 31.376 33.856 15.392 9.184 30.176 17.68 29.696 16.256-1.024-3.008 62.72-8.944 62.72-8.944l33.856 14.928 59.808 7.904 25.872 13.952h5.68c30.848-10.256 58.656-27.104 81.904-48.8l-19.856-5.952-10.944-14.944-12.928 3.008 2.976 37.824-22.88 14.944-27.92-10.976 22.928-14.928-9.968-14.928h-16.928l-17.904 6.944-45.792-22.896 17.92-13.904 24.864 17.92h31.872l11.952-28.88-39.824-25.904-37.824-24.896-20.928-21.888-1.008-19.936-33.856 14.944-23.904-11.92 7.968-26.896 21.92 8.944 26.816-41.824 28.896 12.928 61.744-32.848 48.768-39.824-19.92-49.776c0 0-42.8-62.72-41.824-58.752 0.656 2.528-5.472-8.832-10.080-17.52-9.168-2.016-18.576-3.312-28.128-4.112zM473.536 108.896c-12.8 1.296-24.304 2.32-24.304 2.32l-22.896 61.728 38.832 47.808-10.944 23.872 6.496 5.152c12.096-27.52 18.944-57.856 18.944-89.792-0.016-17.584-2.256-34.656-6.128-51.088zM256.032 400c-132.352 0-240.032-107.68-240.032-240 0-132.352 107.68-240 240.032-240 132.32 0 239.968 107.648 239.968 240 0 132.32-107.648 240-239.968 240z" />
58
+ <glyph unicode="&#xe603;" glyph-name="monitor" d="M512 0v384h-512v-384h192v-64h-96v-32h320v32h-96v64h192zM64 320h384v-256h-384v256z" />
59
+ <glyph unicode="&#xe604;" glyph-name="location" d="M256 416c-88.366 0-160-71.634-160-160 0-160 160-352 160-352s160 192 160 352c0 88.366-71.635 160-160 160zM256 160c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96z" />
60
+ <glyph unicode="&#xe900;" glyph-name="xing" d="M77.8 314.9c-4.4 0-8.2-1.6-10.1-4.6-1.9-3.2-1.6-7.2 0.4-11.3l49.9-86.4c0.1-0.2 0.1-0.3 0-0.4l-78.4-138.6c-2-4.1-1.9-8.2 0-11.3 1.9-3 5.2-5 9.6-5h73.8c11 0 16.4 7.5 20.1 14.3 0 0 76.7 135.7 79.7 141-0.3 0.5-50.8 88.5-50.8 88.5-3.7 6.5-9.2 13.8-20.6 13.8h-73.6zM388 416c-11 0-15.8-6.9-19.8-14.1 0 0-159.1-282.1-164.3-291.4 0.3-0.5 104.9-192.5 104.9-192.5 3.7-6.5 9.3-14.1 20.6-14.1h73.8c4.4 0 7.9 1.7 9.8 4.7 2 3.2 1.9 7.3-0.2 11.4l-104 190.3c-0.1 0.2-0.1 0.3 0 0.5l163.5 289.1c2 4.1 2.1 8.2 0.2 11.4-1.9 3-5.4 4.7-9.8 4.7h-74.7z" />
61
+ <glyph unicode="&#xe901;" glyph-name="youtube" horiz-adv-x="439" d="M277.428 60.572v-60.285q0-19.143-11.143-19.143-6.572 0-12.857 6.286v86q6.285 6.285 12.857 6.285 11.143 0 11.143-19.143zM374 60.286v-13.143h-25.714v13.143q0 19.428 12.857 19.428t12.857-19.428zM98 122.572h30.572v26.857h-89.143v-26.857h30v-162.572h28.572v162.572zM180.286-40h25.428v141.143h-25.428v-108q-8.572-12-16.286-12-5.143 0-6 6-0.286 0.857-0.286 10v104h-25.428v-111.714q0-14 2.286-20.857 3.429-10.572 16.572-10.572 13.714 0 29.143 17.428v-15.428zM302.857 2.286v56.285q0 20.857-2.572 28.286-4.857 16-20.286 16-14.286 0-26.572-15.428v62h-25.428v-189.429h25.428v13.715q12.857-15.715 26.572-15.715 15.428 0 20.286 15.715 2.572 7.714 2.572 28.572zM399.428 5.143v3.714h-26q0-14.572-0.572-17.428-2-10.285-11.428-10.285-13.143 0-13.143 19.714v24.857h51.143v29.428q0 22.572-7.714 33.143-11.143 14.572-30.286 14.572-19.428 0-30.572-14.572-8-10.572-8-33.143v-49.428q0-22.572 8.286-33.143 11.143-14.572 30.857-14.572 20.572 0 30.857 15.143 5.143 7.715 6 15.428 0.572 2.572 0.572 16.572zM225.714 266v60q0 19.715-12.286 19.715t-12.286-19.715v-60q0-20 12.286-20t12.286 20zM431.143 51.428q0-66.857-7.428-100-4-16.857-16.572-28.285t-29.143-13.143q-52.572-6-158.571-6t-158.571 6q-16.572 1.715-29.285 13.143t-16.428 28.286q-7.428 32-7.428 100 0 66.857 7.428 100 4 16.857 16.572 28.285t29.428 13.428q52.285 5.714 158.286 5.714t158.571-5.714q16.572-2 29.286-13.428t16.428-28.285q7.428-32 7.428-100zM146 416h29.143l-34.571-114v-77.428h-28.572v77.429q-4 21.143-17.428 60.571-10.572 29.429-18.572 53.429h30.285l20.285-75.143zM251.714 320.857v-50q0-23.143-8-33.715-10.572-14.572-30.286-14.572-19.143 0-30 14.572-8 10.857-8 33.714v50q0 22.857 8 33.429 10.857 14.571 30 14.571 19.714 0 30.286-14.571 8-10.572 8-33.429zM347.428 367.143v-142.571h-26v15.714q-15.143-17.714-29.428-17.714-13.143 0-16.857 10.572-2.286 6.857-2.286 21.428v112.571h26v-104.857q0-9.429 0.286-10 0.857-6.286 6-6.286 7.714 0 16.286 12.286v108.857h26z" />
62
+ <glyph unicode="&#xe902;" glyph-name="instagram" d="M464 416h-416c-26.4 0-48-21.6-48-48v-416c0-26.4 21.6-48 48-48h416c26.4 0 48 21.6 48 48v416c0 26.4-21.6 48-48 48zM352 336c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16h-64c-8.8 0-16 7.2-16 16v64zM256 256c53 0 96-43 96-96s-43-96-96-96c-53 0-96 43-96 96s43 96 96 96zM448-16v0c0-8.8-7.2-16-16-16h-352c-8.8 0-16 7.2-16 16v0 208h35.2c-2.1-10.3-3.2-21-3.2-32 0-88.4 71.6-160 160-160s160 71.6 160 160c0 11-1.1 21.7-3.2 32h35.2v-208z" />
63
+ <glyph unicode="&#xe903;" glyph-name="sina-weibo" d="M215.1-33c-84.8-8.4-158 30-163.5 85.6-5.5 55.7 58.8 107.5 143.5 115.9 84.8 8.4 158-30 163.4-85.6 5.6-55.7-58.7-107.6-143.4-115.9zM384.6 151.7c-7.2 2.2-12.2 3.6-8.4 13.1 8.2 20.6 9 38.3 0.1 51-16.6 23.7-62.1 22.5-114.2 0.6 0 0-16.4-7.1-12.2 5.8 8 25.8 6.8 47.3-5.7 59.8-28.3 28.3-103.5-1.1-168-65.6-48.2-48.1-76.2-99.4-76.2-143.7 0-84.6 108.6-136.1 214.8-136.1 139.2 0 231.9 80.9 231.9 145.1 0 38.9-32.7 60.9-62.1 70zM477.1 306.7c-33.6 37.3-83.2 51.5-129 41.8v0c-10.6-2.3-17.3-12.7-15-23.2 2.3-10.6 12.6-17.3 23.2-15 32.6 6.9 67.8-3.2 91.7-29.7s30.4-62.6 20.1-94.2v0c-3.3-10.3 2.3-21.3 12.6-24.7 10.3-3.3 21.3 2.3 24.7 12.6v0.1c14.4 44.2 5.3 95-28.3 132.3zM425.4 260c-16.4 18.2-40.6 25.1-62.8 20.3-9.1-1.9-14.9-11-13-20.1 2-9.1 11-14.9 20-12.9v0c10.9 2.3 22.7-1.1 30.7-9.9 8-8.9 10.2-21 6.7-31.6v0c-2.8-8.8 2-18.4 10.9-21.3 8.9-2.8 18.4 2 21.3 10.9 7 21.7 2.6 46.5-13.8 64.6zM219.8 67.7c-3-5.1-9.5-7.5-14.6-5.4-5.1 2-6.6 7.8-3.7 12.7 3 4.9 9.3 7.3 14.3 5.4 5-1.8 6.8-7.5 4-12.7zM192.7 33.1c-8.2-13.1-25.8-18.8-39-12.8-13 5.9-16.9 21.1-8.7 33.9 8.1 12.7 25.1 18.4 38.2 12.9 13.3-5.7 17.6-20.8 9.5-34zM223.5 125.7c-40.3 10.5-85.9-9.6-103.4-45.1-17.9-36.2-0.6-76.5 40.1-89.7 42.2-13.6 92 7.3 109.3 46.3 17.1 38.3-4.2 77.6-46 88.5z" />
64
+ <glyph unicode="&#xe904;" glyph-name="salary1" horiz-adv-x="464" d="M324 35.2c-8.8 0-17.6 0-26.4 0.8v-52c8.8-0.8 17.6-0.8 26.4-0.8 72 0 131.2 23.2 131.2 52v52c-0.8-28.8-59.2-52-131.2-52zM324 254.4c-72 0-131.2 23.2-131.2 52v-52c0-1.6 0-3.2 0.8-4.8 43.2-8 76.8-24 93.6-45.6 12-1.6 24-2.4 36.8-2.4 72 0 131.2 23.2 131.2 52v52c-0.8-28-59.2-51.2-131.2-51.2zM324 144.8c-8.8 0-17.6 0-26.4 0.8v-52c8.8-0.8 17.6-0.8 26.4-0.8 72 0 131.2 23.2 131.2 52v52c-0.8-28.8-59.2-52-131.2-52zM192.8 364c0 28.8 58.4 52 131.2 52s131.2-23.2 131.2-52-58.4-52-131.2-52-131.2 22.4-131.2 52zM140.8-44c-72 0-131.2 23.2-131.2 52v-52c0-28.8 58.4-52 131.2-52s131.2 23.2 131.2 52v52c-0.8-28-59.2-52-131.2-52zM140.8 65.6c-72 0-131.2 23.2-131.2 52v-52c0-28.8 58.4-52 131.2-52s131.2 23.2 131.2 52v52c-0.8-28-59.2-52-131.2-52zM271.2 175.2c0-28.8-58.4-52-131.2-52s-130.4 23.2-130.4 52 58.4 52 131.2 52 130.4-22.4 130.4-52z" />
65
+ <glyph unicode="&#xe905;" glyph-name="recruiter" horiz-adv-x="464" d="M368.8 262.4h-68v102.4h68v-102.4zM368.8 92h-68v102.4h68v-102.4zM265.6 262.4h-68v102.4h68v-102.4zM265.6 92h-68v102.4h68v-102.4zM164 262.4h-68v102.4h68v-102.4zM164 92h-68v102.4h68v-102.4zM60.8 416v-512h136.8v102.4h68v-102.4h136.8v512h-341.6z" />
66
+ <glyph unicode="&#xe906;" glyph-name="Card_icon" horiz-adv-x="624" d="M0 126.609v-186.788c0-19.696 16.645-35.82 37.114-35.82h460.033c20.469 0 37.115 16.125 37.115 35.82v186.788h-534.261zM112.355-31.248h-46.974c-7.048 0-12.784 5.555-12.784 12.3 0 6.89 5.773 12.301 12.784 12.301h46.974c7.048 0 12.784-5.411 12.784-12.301 0.037-6.745-5.736-12.3-12.784-12.3zM586.192 416h-460.034c-20.469 0-37.114-15.923-37.114-35.503v-84.815h417.144c34.566 0 62.72-26.897 62.72-59.998v-77.103l-2.024-76.494h19.269c20.469 0 37.115 16.031 37.115 35.611l0.038 262.798c0 19.581-16.645 35.504-37.115 35.504h0.002zM534.257 224.31l0.004-53.18h-534.261v53.18c0 19.779 16.645 35.863 37.114 35.863h460.033c20.469 0 37.115-16.084 37.115-35.863h-0.004z" />
67
+ <glyph unicode="&#xe907;" glyph-name="Remove" horiz-adv-x="384" d="M345.6 364.8h-89.6v12.8c0 21.167-17.233 38.4-38.4 38.4h-51.2c-21.167 0-38.4-17.233-38.4-38.4v-12.8h-89.6c-21.167 0-38.4-17.233-38.4-38.4v-25.6c0-16.667 10.7-30.9 25.6-36.2v-322.202c0-21.167 17.233-38.4 38.4-38.4h256c21.167 0 38.4 17.233 38.4 38.4v322.202c14.9 5.267 25.6 19.534 25.6 36.2v25.6c0 21.167-17.233 38.4-38.4 38.4zM128-32c0-7.034-5.734-12.8-12.8-12.8-7.034 0-12.8 5.766-12.8 12.8v256c0 7.066 5.766 12.8 12.8 12.8 7.067 0 12.8-5.733 12.8-12.8v-256zM204.8-32c0-7.034-5.733-12.8-12.8-12.8-7.034 0-12.8 5.766-12.8 12.8v256c0 7.066 5.767 12.8 12.8 12.8 7.066 0 12.8-5.733 12.8-12.8v-256zM230.4 364.8h-76.8v12.8c0 7.067 5.767 12.8 12.8 12.8h51.2c7.066 0 12.8-5.733 12.8-12.8v-12.8zM281.6-32c0-7.034-5.733-12.8-12.8-12.8-7.034 0-12.8 5.766-12.8 12.8v256c0 7.066 5.767 12.8 12.8 12.8 7.067 0 12.8-5.733 12.8-12.8v-256z" />
68
+ <glyph unicode="&#xe908;" glyph-name="loading_dot_wheel" d="M225.074-58.401c0 5.902 2.343 11.561 6.521 15.738s9.837 6.521 15.738 6.521c5.901 0 11.561-2.343 15.739-6.521s6.521-9.837 6.521-15.738c0-12.291-9.969-22.26-22.26-22.26s-22.26 9.969-22.26 22.26h0.001zM359.406-35.035c-14.125 16.844-11.937 41.934 4.908 56.082 8.069 6.764 18.524 10.058 29.046 9.151 10.5-0.928 20.226-5.99 27.012-14.059 14.125-16.845 11.937-41.956-4.908-56.082-8.091-6.786-18.524-10.080-29.046-9.152s-20.226 5.969-27.012 14.059zM461.159 83.050c-20.226 3.581-33.733 22.857-30.173 43.083 1.724 9.726 7.228 18.348 15.296 24.007 8.091 5.659 18.082 7.891 27.808 6.167 20.226-3.559 33.733-22.857 30.151-43.083-1.702-9.704-7.206-18.348-15.274-24.007-8.091-5.659-18.082-7.87-27.808-6.167zM461.533 238.473c-7.98-4.62-17.463-5.858-26.372-3.47s-16.49 8.201-21.111 16.181c-9.594 16.623-3.89 37.888 12.733 47.482 7.98 4.62 17.463 5.858 26.372 3.47 8.909-2.365 16.513-8.201 21.111-16.181 4.62-7.98 5.858-17.485 3.471-26.372-2.387-8.909-8.201-16.513-16.204-21.111v0zM361.024 356.428c-2.94-8.090-8.997-14.678-16.8-18.325s-16.733-4.023-24.846-1.083c-16.844 6.145-25.553 24.78-19.409 41.647 2.94 8.090 8.997 14.678 16.8 18.325s16.733 4.023 24.846 1.083c8.091-2.94 14.678-8.996 18.325-16.8 3.647-7.803 4.023-16.733 1.083-24.846v0zM208.317 380.677c5.747-15.738-2.387-33.18-18.148-38.906s-33.18 2.387-38.905 18.148c-5.725 15.762 2.387 33.18 18.148 38.906 15.762 5.747 33.18-2.387 38.905-18.148zM76.77 300.127c6.521-3.78 11.274-9.969 13.219-17.242s0.928-15.009-2.829-21.53c-3.758-6.521-9.969-11.274-17.242-13.219s-15.009-0.929-21.531 2.829c-6.521 3.758-11.274 9.97-13.218 17.242-1.946 7.25-0.928 15.009 2.83 21.531 3.78 6.498 9.969 11.274 17.242 13.219s15.009 0.928 21.531-2.829zM29.087 153.724c14.435 2.542 28.184-7.096 30.727-21.508 1.216-6.919-0.353-14.059-4.399-19.807-4.023-5.769-10.191-9.682-17.11-10.92-14.413-2.542-28.184 7.096-30.727 21.509-2.542 14.435 7.096 28.184 21.509 30.726h-0zM87.692 11.651c4.222 5.040 10.279 8.179 16.823 8.754s13.042-1.481 18.082-5.703 8.179-10.279 8.754-16.822c0.575-6.543-1.481-13.042-5.703-18.082s-10.279-8.201-16.823-8.754c-6.543-0.575-13.042 1.459-18.082 5.703-5.040 4.222-8.201 10.257-8.754 16.822-0.575 6.543 1.459 13.042 5.703 18.082z" />
69
+ <glyph unicode="&#xe909;" glyph-name="madgexiconlibrarySVG-47" d="M256 352c-106.048 0-192-85.952-192-192s85.952-192 192-192c106.016 0 192 85.952 192 192s-85.984 192-192 192z" />
70
+ <glyph unicode="&#x1d4df;" glyph-name="madgex-icon-librarySVG-46" d="M266.496 384c-122.256 0-183.904-87.664-183.904-160.752 0-44.256 16.752-83.632 52.688-98.304 5.888-2.4 11.168-0.080 12.88 6.448 1.184 4.512 4 15.904 5.264 20.656 1.728 6.448 1.056 8.72-3.696 14.336-10.368 12.224-16.992 28.048-16.992 50.464 0 65.024 48.656 123.248 126.688 123.248 69.104 0 107.072-42.224 107.072-98.608 0-74.192-32.832-136.816-81.584-136.816-26.928 0-47.072 22.256-40.608 49.568 7.728 32.608 22.72 67.776 22.72 91.312 0 21.056-11.312 38.624-34.704 38.624-27.52 0-49.632-28.464-49.632-66.608 0-24.288 8.208-40.72 8.208-40.72s-28.16-119.328-33.104-140.224c-9.84-41.616-1.472-92.64-0.768-97.792 0.416-3.056 4.336-3.776 6.112-1.472 2.544 3.312 35.312 43.776 46.464 84.208 3.152 11.456 18.096 70.736 18.096 70.736 8.944-17.056 35.072-32.080 62.864-32.080 82.72 0 138.848 75.408 138.848 176.352 0 76.336-64.656 147.424-162.912 147.424z" />
71
+ </font></defs></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs/><symbol id="icon-asterisk" viewBox="0 0 12 12"><path fill-rule="nonzero" d="m8.281 11.422 2-1.422L8.11 6.89l3.329-1.03-.735-2.329-3.265 1.063V.828H4.733v3.766L1.47 3.53.734 5.86l3.329 1.032L1.874 10l2 1.422 2.234-2.938z"/></symbol><symbol id="icon-calendar" viewBox="0 0 32 32"><path d="M28.667 4H25a.333.333 0 0 1-.333-.333V1.333a1.333 1.333 0 0 0-2.667 0v6.334a1 1 0 0 1-2 0v-3A.667.667 0 0 0 19.333 4H11a.333.333 0 0 1-.333-.332V1.333a1.333 1.333 0 0 0-2.667 0v6.334a1 1 0 1 1-2 0v-3A.667.667 0 0 0 5.333 4h-2A2.667 2.667 0 0 0 .667 6.667v22.666A2.667 2.667 0 0 0 3.333 32h25.334a2.667 2.667 0 0 0 2.666-2.667V6.667A2.667 2.667 0 0 0 28.667 4ZM28 29.333H4a.667.667 0 0 1-.667-.666v-16c0-.369.299-.667.667-.667h24c.368 0 .667.298.667.667v16a.667.667 0 0 1-.667.666Z" fill-rule="evenodd"/></symbol><symbol id="icon-cart" viewBox="0 0 32 32"><path d="M31.547 9.013a1.333 1.333 0 0 0-1.334-1.68H7.4a.347.347 0 0 1-.333-.266l-.76-3.627A4.347 4.347 0 0 0 2.067 0a1.667 1.667 0 1 0 0 3.333 1 1 0 0 1 .973.787l4.227 20.107A4.333 4.333 0 0 0 8.92 26.8a.347.347 0 0 1 .133.253.333.333 0 0 1-.12.267 2.667 2.667 0 1 0 4.4 2.013c0-.411-.096-.818-.28-1.186a.307.307 0 0 1 0-.32.333.333 0 0 1 .28-.16h8a.333.333 0 0 1 .294.16.333.333 0 0 1 0 .32 2.545 2.545 0 0 0-.294 1.186 2.667 2.667 0 1 0 5.334 0 2.668 2.668 0 0 0-.294-1.2.386.386 0 0 1 0-.32.332.332 0 0 1 .28-.146 1.667 1.667 0 0 0 0-3.334H11.507a1 1 0 0 1-.974-.786l-.24-1.147a.306.306 0 0 1 0-.28.333.333 0 0 1 .374-.12H24.96a4 4 0 0 0 3.853-2.947l2.734-10.04Z"/></symbol><symbol id="icon-check" viewBox="0 0 36 36"><path d="M26.18 9.546a1.205 1.205 0 0 0-1.628.255L13.636 24.296l-3.644-3.473a1.207 1.207 0 0 0-1.127-.288 1.14 1.14 0 0 0-.825.786c-.108.383.007.792.301 1.073l4.617 4.396a1.225 1.225 0 0 0 1.772-.138l11.718-15.556a1.078 1.078 0 0 0-.268-1.55z"/></symbol><symbol id="icon-chevron-down" viewBox="0 0 32 32"><path d="M7.899 11.219a2.25 2.25 0 0 0-3.506 2.802l.208.26 9.75 10.5a2.25 2.25 0 0 0 3.063.22l.235-.22 9.75-10.5a2.25 2.25 0 0 0-3.054-3.289l-.244.227L16 19.942 7.899 11.22Z" fill-rule="evenodd"/></symbol><symbol id="icon-chevron-left" viewBox="0 0 32 32"><path d="M22.781 24.101a2.25 2.25 0 0 1-2.802 3.506l-.26-.208-10.5-9.75a2.25 2.25 0 0 1-.22-3.063l.22-.235 10.5-9.75a2.25 2.25 0 0 1 3.289 3.054l-.227.244L14.058 16l8.723 8.101Z" fill-rule="nonzero"/></symbol><symbol id="icon-chevron-right" viewBox="0 0 32 32"><path d="M9.219 24.101a2.25 2.25 0 0 0 2.802 3.506l.26-.208 10.5-9.75a2.25 2.25 0 0 0 .22-3.063l-.22-.235-10.5-9.75a2.25 2.25 0 0 0-3.289 3.054l.227.244L17.942 16 9.22 24.101Z" fill-rule="nonzero"/></symbol><symbol id="icon-chevron-up" viewBox="0 0 32 32"><path d="M7.899 24.781a2.25 2.25 0 0 1-3.506-2.802l.208-.26 9.75-10.5a2.25 2.25 0 0 1 3.063-.22l.235.22 9.75 10.5a2.25 2.25 0 0 1-3.054 3.289l-.244-.227L16 16.058 7.899 24.78Z" fill-rule="evenodd"/></symbol><symbol id="icon-close" viewBox="0 0 32 32"><path d="M22.847 5.981a2.25 2.25 0 0 1 3.052 3.301L19.18 16l6.72 6.719a2.25 2.25 0 0 1-3.053 3.301l-.13-.12L16 19.18 9.282 25.9l-.129.119a2.25 2.25 0 0 1-3.052-3.301l6.717-6.719-6.717-6.717a2.25 2.25 0 0 1 3.052-3.301l.13.12 6.716 6.717 6.719-6.717Z" fill-rule="evenodd"/></symbol><symbol id="icon-cross" viewBox="0 0 36 36"><path d="M8.375 26.295a1.28 1.28 0 0 0 1.81 1.81l7.904-7.902a.213.213 0 0 1 .302 0l7.904 7.904a1.28 1.28 0 0 0 1.81-1.81l-7.902-7.906a.213.213 0 0 1 0-.302l7.904-7.904a1.28 1.28 0 0 0-1.812-1.81l-7.904 7.902a.213.213 0 0 1-.302 0l-7.904-7.902a1.28 1.28 0 0 0-1.81 1.81l7.902 7.904a.213.213 0 0 1 0 .302l-7.902 7.904z"/></symbol><symbol id="icon-doc-pdf" viewBox="0 0 24 24"><path d="M15.586 0c.265 0 .519.104.707.291l5.414 5.414a.997.997 0 0 1 .293.707V22a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2ZM14 2H4.5a.5.5 0 0 0-.5.5v19a.5.5 0 0 0 .5.5h15a.5.5 0 0 0 .5-.5V8h-4a2 2 0 0 1-1.995-1.85L14 6V2ZM8.787 5.588l.153.005a1.411 1.411 0 0 1 1.184.978 15.8 15.8 0 0 1 .812 3.445.52.52 0 0 0 .164.32c.6.538 1.255 1.01 1.954 1.41.115.064.251.08.377.043a11.74 11.74 0 0 1 3.639-.433 1.7 1.7 0 0 1 1.393 2.656c-.326.46-.885.695-1.442.605a12.671 12.671 0 0 1-3.735-1.065.527.527 0 0 0-.394-.019c-.661.248-1.3.552-1.909.91a.493.493 0 0 0-.229.318 8.929 8.929 0 0 1-1.451 3.257 1.725 1.725 0 0 1-1.611.717 1.637 1.637 0 0 1-1.332-.992 1.592 1.592 0 0 1 .3-1.622 12.971 12.971 0 0 1 2.579-2.339.51.51 0 0 0 .217-.349c.096-.784.117-1.576.063-2.364a.478.478 0 0 0-.137-.307A14.69 14.69 0 0 1 7.429 8.2a1.698 1.698 0 0 1-.008-1.827 1.627 1.627 0 0 1 1.519-.78ZM19.174 6 16 2.829V6h3.174Z" fill-rule="nonzero"/></symbol><symbol id="icon-doc" viewBox="0 0 24 24"><path d="M15.586 0c.265 0 .52.105.707.293l5.414 5.414a.997.997 0 0 1 .293.707V22a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2ZM14 2H4.5a.5.5 0 0 0-.5.5v19a.5.5 0 0 0 .5.5h15a.5.5 0 0 0 .5-.5V8h-4a2 2 0 0 1-1.995-1.85L14 6V2Zm5.173 4L16 2.828V6h3.173Z" fill-rule="nonzero"/></symbol><symbol id="icon-email" viewBox="0 0 24 24"><path d="M11.114 14.556 1.43 4.87a.5.5 0 0 1 .281-.849C1.807 4.007 1.903 4 2 4h20c.096 0 .192.007.287.021a.5.5 0 0 1 .281.849l-9.686 9.686a1.252 1.252 0 0 1-1.768 0Zm12.774-8.724A.181.181 0 0 1 24 6v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V6c0-.073.045-.138.112-.166a.18.18 0 0 1 .2.039l6.2 6.2a.251.251 0 0 1 0 .354L1.469 17.47a.75.75 0 0 0 1.06 1.061l5.043-5.043a.251.251 0 0 1 .354 0l2.131 2.127a2.75 2.75 0 0 0 3.888 0l2.129-2.129a.25.25 0 0 1 .354 0l5.043 5.043a.75.75 0 1 0 1.06-1.061l-5.043-5.043a.251.251 0 0 1 0-.354l6.2-6.2a.182.182 0 0 1 .2-.039Z" fill-rule="nonzero"/></symbol><symbol id="icon-external" viewBox="0 0 30 32"><path d="M28.594 14.125c-.379 0-.716-.154-.972-.394-.007-.007-.019-.007-.026-.015l-3.495-3.498-8.85 8.85c-.916.912-2.4.912-3.316 0a2.345 2.345 0 0 1 0-3.315l8.847-8.847-3.498-3.502c-.008-.008-.008-.02-.015-.026a1.412 1.412 0 0 1-.394-.972c0-.776.63-1.406 1.406-1.406h9.844C29.159 1 30 1.84 30 2.875v9.844c0 .775-.63 1.406-1.407 1.406ZM3.75 9.437v16.876c0 .517.42.937.938.937h16.875c.517 0 .937-.42.937-.938V16l3.75 3.75v7.5A3.746 3.746 0 0 1 22.5 31H3.75A3.749 3.749 0 0 1 0 27.25V8.5c0-2.07 1.68-3.75 3.75-3.75h7.5L15 8.5H4.687a.937.937 0 0 0-.937.938Z" fill-rule="nonzero"/></symbol><symbol id="icon-flag" viewBox="0 0 16 16"><path d="M1.788.293a.977.977 0 0 1 1.392 0c.185.187.289.442.289.707v.171c1.302-.098 2.095.054 3.995.536.972.292 1.985.474 3.012.543a8.99 8.99 0 0 0 2.625-.5 1.15 1.15 0 0 1 1.024.05c.12.077.216.179.281.295a.715.715 0 0 1 .094.372v8.08c0 .504-.388.688-.814.83a10.25 10.25 0 0 1-3.229.623 14.196 14.196 0 0 1-3.177-.542c-1.855-.445-2.56-.598-3.811-.502V15c0 .265-.104.52-.289.707a.977.977 0 0 1-1.392 0A1.008 1.008 0 0 1 1.5 15V1c0-.265.104-.52.288-.707Z"/></symbol><symbol id="icon-information" viewBox="0 0 16 16"><path d="M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0Zm.167 3.333a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm1.5 9H7A.667.667 0 1 1 7 11h.5a.167.167 0 0 0 .167-.167v-3a.167.167 0 0 0-.167-.166H7a.667.667 0 0 1 0-1.334h.667A1.333 1.333 0 0 1 9 7.667v3.166a.167.167 0 0 0 .167.167h.5a.667.667 0 1 1 0 1.333Z"/></symbol><symbol id="icon-job" viewBox="0 0 24 24"><path d="M3 22.5h18a3 3 0 0 0 3-3v-11a3 3 0 0 0-3-3h-3.9a.25.25 0 0 1-.248-.219l-.144-1.153A3 3 0 0 0 13.734 1.5h-3.468a3 3 0 0 0-2.977 2.628l-.144 1.153A.25.25 0 0 1 6.9 5.5H3a3 3 0 0 0-3 3v11a3 3 0 0 0 3 3ZM9.273 4.376a1 1 0 0 1 .993-.876h3.468a1 1 0 0 1 .993.876l.105.844a.25.25 0 0 1-.248.28H9.416a.25.25 0 0 1-.248-.28l.105-.844ZM5.25 11a.75.75 0 0 1 .75-.75h12a.75.75 0 0 1 .75.75v.5a.75.75 0 0 1-.75.75H6a.75.75 0 0 1-.75-.75V11Zm0 5.5a.75.75 0 0 1 .75-.75h12a.75.75 0 0 1 .75.75v.5a.75.75 0 0 1-.75.75H6a.75.75 0 0 1-.75-.75v-.5Z" fill-rule="nonzero"/></symbol><symbol id="icon-list-bullets" viewBox="0 0 24 24"><circle cx="2.5" cy="4" r="2.5"/><path d="M8.5 5H23a1 1 0 0 0 0-2H8.5a1 1 0 0 0 0 2Z"/><circle cx="2.5" cy="12" r="2.5"/><path d="M23 11H8.5a1 1 0 0 0 0 2H23a1 1 0 0 0 0-2Z"/><circle cx="2.5" cy="20" r="2.5"/><path d="M23 19H8.5a1 1 0 0 0 0 2H23a1 1 0 0 0 0-2Z"/></symbol><symbol id="icon-list-numbers" viewBox="0 0 24 24"><path d="M7.75 4.5h15a1 1 0 0 0 0-2h-15a1 1 0 0 0 0 2ZM22.75 11h-15a1 1 0 0 0 0 2h15a1 1 0 0 0 0-2ZM22.75 19.5h-15a1 1 0 0 0 0 2h15a1 1 0 0 0 0-2ZM2.21 17.25a2 2 0 0 0-1.93 1.48.75.75 0 0 0 1.45.39.5.5 0 0 1 .48-.37.5.5 0 0 1 .5.5.5.5 0 0 1-.5.5.75.75 0 0 0 0 1.5.5.5 0 0 1 .5.5.5.5 0 0 1-1 .13.75.75 0 1 0-1.44.41 2 2 0 0 0 3.92-.54 1.94 1.94 0 0 0-.34-1.11.28.28 0 0 1 0-.28 1.94 1.94 0 0 0 .34-1.11 2 2 0 0 0-1.98-2ZM4.25 10.75a2 2 0 0 0-4 0 .76.76 0 0 0 .75.75.76.76 0 0 0 .75-.75.5.5 0 0 1 1 0 1 1 0 0 1-.23.64L.41 14a.76.76 0 0 0-.09.79.76.76 0 0 0 .68.43h2.5a.75.75 0 0 0 0-1.5h-.42a.25.25 0 0 1-.22-.14.24.24 0 0 1 0-.27l.81-1a2.59 2.59 0 0 0 .58-1.56ZM4 5.25h-.25A.25.25 0 0 1 3.5 5V1.62A1.38 1.38 0 0 0 2.12.25H1.5a.75.75 0 0 0 0 1.5h.25A.25.25 0 0 1 2 2v3a.25.25 0 0 1-.25.25H1.5a.75.75 0 0 0 0 1.5H4a.75.75 0 0 0 0-1.5Z"/></symbol><symbol id="icon-location-pin" viewBox="0 0 24 24"><path d="M12 0a8.009 8.009 0 0 0-8 8c0 3.51 5 12.025 7.148 15.524a1 1 0 0 0 1.704-.001C15 20.026 20 11.514 20 8a8.009 8.009 0 0 0-8-8Zm0 11.5a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7Z" fill-rule="nonzero"/></symbol><symbol id="icon-menu" viewBox="0 0 24 24"><g transform="translate(1 2.429)" fill-rule="nonzero"><rect width="22" height="4.222" rx="1.5"/><rect y="7.389" width="22" height="4.222" rx="1.5"/><rect y="14.778" width="22" height="4.222" rx="1.5"/></g></symbol><symbol id="icon-minus" viewBox="0 0 32 32"><path d="M4 16c0-1.14.846-2.08 1.945-2.23l.305-.02h19.5a2.25 2.25 0 0 1 .305 4.48l-.305.02H6.25A2.25 2.25 0 0 1 4 16Z" fill-rule="evenodd"/></symbol><symbol id="icon-plus-small" viewBox="0 0 32 32"><path d="M16 4c1.14 0 2.08.846 2.23 1.945l.02.305v7.5h7.5a2.25 2.25 0 0 1 .305 4.48l-.305.02h-7.5v7.5a2.25 2.25 0 0 1-4.48.305l-.02-.305v-7.5h-7.5a2.25 2.25 0 0 1-.305-4.48l.305-.02h7.5v-7.5A2.25 2.25 0 0 1 16 4Z" fill-rule="evenodd"/></symbol><symbol id="icon-plus" viewBox="0 0 32 32"><path d="M16 0a3 3 0 0 1 2.973 2.593L19 3v10h10a3 3 0 0 1 .407 5.973L29 19H19v10a3 3 0 0 1-5.973.407L13 29V19H3a3 3 0 0 1-.407-5.973L3 13h10V3a3 3 0 0 1 3-3Z" fill-rule="evenodd"/></symbol><symbol id="icon-question-mark" viewBox="0 0 32 32"><path fill-rule="evenodd" d="M16 0c2.903 0 5.58.715 8.031 2.146a15.904 15.904 0 0 1 5.823 5.833C31.284 10.424 32 13.097 32 16c0 2.903-.715 5.58-2.146 8.031s-3.371 4.393-5.823 5.823C21.58 31.284 18.903 32 16 32c-2.903 0-5.58-.715-8.031-2.146a15.928 15.928 0 0 1-5.823-5.823C.716 21.58 0 18.903 0 16c0-2.903.715-5.58 2.146-8.031a15.928 15.928 0 0 1 5.823-5.823C10.42.716 13.097 0 16 0zm2 21.333h-4a.649.649 0 0 0-.48.188.649.649 0 0 0-.187.479v4c0 .194.063.354.188.48a.649.649 0 0 0 .479.187h4a.649.649 0 0 0 .48-.188.649.649 0 0 0 .187-.479v-4a.649.649 0 0 0-.188-.48.649.649 0 0 0-.479-.187zm-1.583-16c-3.375 0-5.952 1.48-7.73 4.438-.208.333-.152.625.167.875l2.75 2.083c.097.084.23.125.396.125a.614.614 0 0 0 .52-.25c.737-.944 1.334-1.583 1.792-1.916.473-.334 1.07-.5 1.792-.5.667 0 1.26.18 1.781.541.521.361.782.771.782 1.23 0 .527-.14.95-.417 1.27-.278.32-.75.632-1.417.938-.875.389-1.677.99-2.406 1.802-.73.812-1.094 1.684-1.094 2.614v.75c0 .195.063.354.188.48A.649.649 0 0 0 14 20h4a.649.649 0 0 0 .48-.188.649.649 0 0 0 .187-.479c0-.264.149-.607.448-1.03a3.518 3.518 0 0 1 1.135-1.032c.444-.25.785-.448 1.02-.594.237-.146.556-.389.96-.73.402-.34.711-.673.926-1 .216-.325.41-.746.584-1.26.173-.513.26-1.076.26-1.687 0-1.222-.385-2.354-1.156-3.396a7.89 7.89 0 0 0-2.886-2.416c-1.152-.57-2.333-.855-3.541-.855z"/></symbol><symbol id="icon-redo" viewBox="0 0 24 24"><path d="M22.61.16a.51.51 0 0 0-.55.11l-2.59 2.59a.24.24 0 0 1-.29.05 12.54 12.54 0 0 0-13 .86 12.25 12.25 0 0 0-.08 19.86 1.25 1.25 0 0 0 .73.24 1.22 1.22 0 0 0 1-.51 1.25 1.25 0 0 0-.27-1.75 9.74 9.74 0 0 1 .1-15.8 10 10 0 0 1 9.46-1.1.26.26 0 0 1 .16.18.25.25 0 0 1-.07.22L15.37 7a.49.49 0 0 0-.11.55.5.5 0 0 0 .46.31h6.7a.51.51 0 0 0 .5-.5V.62a.51.51 0 0 0-.31-.46Z"/></symbol><symbol id="icon-search" viewBox="0 0 24 24"><path d="m23.384 21.619-6.529-6.529a9.284 9.284 0 1 0-1.768 1.768l6.529 6.529c.492.48 1.276.48 1.768 0a1.251 1.251 0 0 0 0-1.768ZM2.75 9.5a6.75 6.75 0 1 1 6.75 6.75A6.758 6.758 0 0 1 2.75 9.5Z" fill-rule="nonzero"/></symbol><symbol id="icon-settings" viewBox="0 0 30 32"><path fill-rule="evenodd" clip-rule="evenodd" d="m28.824 11.637-1.829 2.306v4.114l1.831 2.311a2.46 2.46 0 0 1 .208 2.766l-1.001 1.732a2.46 2.46 0 0 1-2.498 1.205l-2.92-.444-3.57 2.058-1.076 2.742a2.457 2.457 0 0 1-2.286 1.564h-2.002a2.457 2.457 0 0 1-2.286-1.564l-1.076-2.742-3.57-2.058-2.92.444a2.46 2.46 0 0 1-2.498-1.205L.33 23.134a2.46 2.46 0 0 1 .208-2.766l1.84-2.31v-4.115l-1.84-2.311A2.46 2.46 0 0 1 .33 8.866l1.001-1.732A2.46 2.46 0 0 1 3.83 5.929l2.924.434 3.57-2.057L11.4 1.563A2.457 2.457 0 0 1 13.685 0h2.007a2.457 2.457 0 0 1 2.286 1.563l1.065 2.757 3.57 2.057 2.92-.443a2.46 2.46 0 0 1 2.498 1.204l1 1.733a2.46 2.46 0 0 1-.207 2.766ZM9.544 16a5.143 5.143 0 1 0 10.285 0 5.143 5.143 0 0 0-10.285 0Z"/></symbol><symbol id="icon-share" viewBox="0 0 16 16"><g clip-path="url(#clip0_2041_2056)"><path d="M8.16 3.428V.918c0-.35.406-.544.676-.326l7.008 5.638a.419.419 0 0 1 0 .651l-7.042 5.601a.417.417 0 0 1-.675-.325V9.674A6.827 6.827 0 0 0 1.85 13.82l-.664 1.558A.618.618 0 0 1 0 15.134S0 8.958 2.673 5.99c2.476-2.746 5.484-2.565 5.484-2.565l.003.003Z"/></g></symbol><symbol id="icon-social-facebook" viewBox="0 0 32 32"><path class="st2" d="M17.6 0H23v5.5h-1.5c-.7 0-1.4 0-2.1.1-.9.1-1.3.5-1.3 1.4v3.4l.1.1H23c-.2 1.8-.4 3.7-.6 5.5H18v16h-6.6V16.1H8.2v-5.6h3.3V9.4c0-1.4-.1-2.9.2-4.3.5-2.7 1.9-4.2 4.5-4.8.4-.2.9-.2 1.4-.3"/></symbol><symbol id="icon-social-linkedin" viewBox="0 0 32 32"><path class="st2" d="M11.741 28.954c0-.1-.1-.2-.1-.3v-17.2h5.9v2.3h.1c.3-.2.4-.4.6-.6 1-1.2 2.3-1.9 3.9-2 1.8-.2 3.4.1 4.9 1.2 1.3 1 2.1 2.3 2.4 3.8l.3 1.8c0 .1 0 .2.1.3v10.7h-5.9v-9.2c0-.7-.1-1.4-.3-2.1-.5-2-3-2.8-4.6-1.4-1 .7-1.4 1.7-1.4 2.8v9.5c0 .1 0 .3-.1.4h-5.8z"/><path class="st3" d="M2.6 29V11.5h5.9V28.9H2.6zM2.3 5.6c0-.2.1-.4.1-.6.5-1.2 1.8-2 3.3-2 1.3.1 2.3.6 2.9 1.8.9 2-.4 4.1-2.6 4.2-.5.1-1 0-1.6-.1-1.1-.3-1.8-1.1-2.1-2.2 0-.1 0-.2-.1-.3v-.8z"/></symbol><symbol id="icon-social-pinterest" viewBox="0 0 29 29"><path d="M7.793 28.553c.03.214.187.39.4.447h.15a.622.622 0 0 0 .497-.27 17.233 17.233 0 0 0 3.016-5.414c.124-.446.537-2.057.84-3.207a.34.34 0 0 1 .226-.236.35.35 0 0 1 .325.06 5.738 5.738 0 0 0 3.484 1.191C22.102 21.124 26 16.293 26 9.65 26 4.899 21.95 0 15.175 0 7.614.04 3 5.372 3 10.474c0 3.18 1.377 5.616 3.608 6.523a.923.923 0 0 0 .808-.003.895.895 0 0 0 .487-.633l.33-1.354a1.097 1.097 0 0 0-.302-1.217 4.348 4.348 0 0 1-1.006-2.978 7.339 7.339 0 0 1 2.288-5.358 7.608 7.608 0 0 1 5.521-2.084c4.035 0 6.542 2.26 6.542 5.9 0 4.736-2.107 8.309-4.903 8.309a2.404 2.404 0 0 1-1.873-.745 2.109 2.109 0 0 1-.386-1.867c.18-.73.414-1.489.648-2.233.43-1.164.698-2.379.798-3.613a2.464 2.464 0 0 0-.678-1.923 2.557 2.557 0 0 0-1.91-.784c-1.984 0-3.526 1.936-3.526 4.48a6.834 6.834 0 0 0 .44 2.422c.04.128.04.264 0 .392l-2.038 8.54a17.796 17.796 0 0 0-.055 6.305Z" fill-rule="nonzero"/></symbol><symbol id="icon-social-reddit" viewBox="0 0 29 29"><path d="M29 13.78c-.007-1.507-1.017-2.84-2.505-3.306-1.489-.465-3.12.042-4.044 1.258a15.453 15.453 0 0 0-7.033-2.025c.073-1.234.447-3.375 1.668-4.05.761-.42 1.873-.222 3.274.535.15 1.415 1.343 2.516 2.817 2.6 1.475.082 2.793-.877 3.114-2.265.32-1.388-.453-2.795-1.825-3.321-1.372-.526-2.937-.015-3.695 1.205a4.881 4.881 0 0 0-4.591-.267c-2.14 1.163-2.526 4.247-2.586 5.563-2.486.103-4.907.799-7.045 2.025-.925-1.216-2.555-1.723-4.044-1.258C1.017 10.94.007 12.273 0 13.78c-.006 1.485.964 2.81 2.417 3.305a5.605 5.605 0 0 0 0 .768C2.417 22.346 7.842 26 14.5 26s12.083-3.654 12.083-8.147a5.605 5.605 0 0 0 0-.768c1.453-.495 2.423-1.82 2.417-3.305ZM7.854 16.108c0-.965.812-1.746 1.813-1.746 1 0 1.812.781 1.812 1.746 0 .964-.811 1.745-1.812 1.745s-1.813-.781-1.813-1.745Zm11.37 5.819A9.96 9.96 0 0 1 14.5 23.09a9.885 9.885 0 0 1-4.749-1.163.856.856 0 0 1-.332-1.193.926.926 0 0 1 1.239-.32 8.747 8.747 0 0 0 7.66 0 .926.926 0 0 1 1.239.32.856.856 0 0 1-.332 1.193Zm.11-4.074c-1.002 0-1.813-.781-1.813-1.745 0-.965.811-1.746 1.812-1.746s1.813.781 1.813 1.746c0 .964-.812 1.745-1.813 1.745Z" fill-rule="nonzero"/></symbol><symbol id="icon-social-twitter" viewBox="0 0 29 29"><path d="M16.382 13.73 24.753 4h-1.984l-7.268 8.449L9.696 4H3l8.779 12.776L3 26.98h1.984l7.675-8.922 6.131 8.922h6.696l-9.104-13.25Zm-2.717 3.159-.89-1.272L5.7 5.492h3.046l5.712 8.17.89 1.272 7.423 10.62h-3.047l-6.058-8.666Z"/></symbol><symbol id="icon-spinner" viewBox="0 0 100 100"><path d="M100 50c0-27.6-22.4-50-50-50S0 22.4 0 50m8.5 0C8.5 27.2 27 8.5 50 8.5S91.5 27.2 91.5 50"/></symbol><symbol id="icon-star-fill" viewBox="0 0 24 24"><path d="M23.555 8.729a1.505 1.505 0 0 0-1.406-.98h-6.087a.5.5 0 0 1-.472-.334l-2.185-6.193a1.5 1.5 0 0 0-2.81 0l-.005.016-2.18 6.177a.5.5 0 0 1-.471.334H1.85A1.5 1.5 0 0 0 .887 10.4l5.184 4.3a.5.5 0 0 1 .155.543l-2.178 6.531a1.5 1.5 0 0 0 2.31 1.684l5.346-3.92a.5.5 0 0 1 .591 0l5.344 3.919a1.5 1.5 0 0 0 2.312-1.683l-2.178-6.535a.5.5 0 0 1 .155-.543l5.194-4.306a1.5 1.5 0 0 0 .433-1.661Z" fill-rule="evenodd"/></symbol><symbol id="icon-star-outline" viewBox="0 0 24 24"><path d="M23.901 8.657a1.616 1.616 0 0 0-1.512-1.046h-6.538L13.51 1.038A1.612 1.612 0 0 0 11.99 0a1.611 1.611 0 0 0-1.507 1.058L8.15 7.61H1.612c-.678 0-1.283.421-1.515 1.053a1.59 1.59 0 0 0 .48 1.771l5.535 4.547-2.323 6.91a1.59 1.59 0 0 0 .577 1.798c.567.411 1.338.41 1.904-.001L12 19.527l5.73 4.164a1.623 1.623 0 0 0 1.902.002 1.59 1.59 0 0 0 .58-1.795l-2.324-6.913 5.548-4.559a1.594 1.594 0 0 0 .465-1.769Zm-7.996 5.127c-.35.287-.485.757-.342 1.184l1.704 5.069a.271.271 0 0 1-.098.307.277.277 0 0 1-.325 0l-4.194-3.052a1.108 1.108 0 0 0-1.302 0l-4.189 3.046a.277.277 0 0 1-.324 0 .271.271 0 0 1-.1-.305l1.704-5.07a1.085 1.085 0 0 0-.341-1.184L3.83 10.276a.271.271 0 0 1-.084-.303.275.275 0 0 1 .259-.18H8.93a1.1 1.1 0 0 0 1.037-.729l1.774-4.983a.275.275 0 0 1 .52 0l1.772 4.983a1.1 1.1 0 0 0 1.037.729h4.924a.271.271 0 0 1 .175.483l-4.264 3.508Z" fill-rule="nonzero"/></symbol><symbol id="icon-text-bold" viewBox="0 0 24 24"><path d="M17.19 11A6.27 6.27 0 0 0 12.84.25H4.3a1.25 1.25 0 0 0 0 2.5h1a.25.25 0 0 1 .26.25v18a.25.25 0 0 1-.25.25h-1a1.25 1.25 0 0 0 0 2.5h10A6.74 6.74 0 0 0 17.19 11Zm-4.35-8.25a3.76 3.76 0 0 1 0 7.52H8.31a.25.25 0 0 1-.25-.27V3a.25.25 0 0 1 .25-.25Zm1.42 18.5H8.31a.25.25 0 0 1-.25-.25v-8a.25.25 0 0 1 .25-.25h5.95a4.24 4.24 0 0 1 0 8.48Z"/></symbol><symbol id="icon-text-italic" viewBox="0 0 24 24"><path d="M22.5.25h-7.64a1.25 1.25 0 0 0 0 2.5H16a.26.26 0 0 1 .22.13.25.25 0 0 1 0 .25L4.78 21a.5.5 0 0 1-.42.23H1.5a1.25 1.25 0 0 0 0 2.5h7.64a1.25 1.25 0 0 0 0-2.5H8.05a.26.26 0 0 1-.22-.13.27.27 0 0 1 0-.26L19.22 3a.5.5 0 0 1 .42-.23h2.86a1.25 1.25 0 0 0 0-2.5Z"/></symbol><symbol id="icon-text-link" viewBox="0 0 1024 1024"><path d="M715.648 625.152 670.4 579.904l90.496-90.56c75.008-74.944 85.12-186.368 22.656-248.896-62.528-62.464-173.952-52.352-248.96 22.656L444.16 353.6l-45.248-45.248 90.496-90.496c100.032-99.968 251.968-110.08 339.456-22.656 87.488 87.488 77.312 239.424-22.656 339.456l-90.496 90.496zm-90.496 90.496-90.496 90.496C434.624 906.112 282.688 916.224 195.2 828.8c-87.488-87.488-77.312-239.424 22.656-339.456l90.496-90.496 45.248 45.248-90.496 90.56c-75.008 74.944-85.12 186.368-22.656 248.896 62.528 62.464 173.952 52.352 248.96-22.656l90.496-90.496 45.248 45.248zm0-362.048 45.248 45.248L398.848 670.4 353.6 625.152 625.152 353.6z"/></symbol><symbol id="icon-text-strike-through" viewBox="0 0 24 24"><path d="M23.75 13a1.25 1.25 0 0 0-1.25-1.3h-8.94a.49.49 0 0 1-.28-.09c-.72-.51-1.48-1-2.22-1.43-2.79-1.72-4.49-2.9-4.49-4.86 0-2.24 2.21-2.57 3.52-2.57a4.53 4.53 0 0 1 3.08.76 2.69 2.69 0 0 1 .45 2v.29a1.25 1.25 0 0 0 2.5 0v-.27A4.89 4.89 0 0 0 15 1.76C14 .74 12.36.25 10.09.25c-3.66 0-6 2-6 5.07 0 2.77 1.89 4.51 4 5.92a.26.26 0 0 1 .1.28.25.25 0 0 1-.24.18H1.5a1.25 1.25 0 0 0 0 2.5h11a.27.27 0 0 1 .16.06 4.36 4.36 0 0 1 1.93 3.47c0 3.26-3.43 3.52-4.48 3.52-1.81 0-3.14-.41-3.83-1.17a3.4 3.4 0 0 1-.65-2.71 1.25 1.25 0 1 0-2.49-.24 5.75 5.75 0 0 0 1.26 4.62c1.2 1.33 3.12 2 5.69 2 4.17 0 7-2.42 7-6a6 6 0 0 0-.85-3.15.23.23 0 0 1 0-.25.23.23 0 0 1 .21-.13h6.05A1.25 1.25 0 0 0 23.75 13Z"/></symbol><symbol id="icon-text-underline" viewBox="0 0 24 24"><path d="M22.5 21.25h-21a1.25 1.25 0 0 0 0 2.5h21a1.25 1.25 0 0 0 0-2.5ZM2 2.75h1.34a.25.25 0 0 1 .25.25v8.52a8.41 8.41 0 0 0 16.82 0V3a.25.25 0 0 1 .25-.25H22a1.25 1.25 0 0 0 0-2.5h-5.7a1.25 1.25 0 0 0 0 2.5h1.36a.25.25 0 0 1 .25.25v8.52a5.91 5.91 0 0 1-11.82 0V3a.25.25 0 0 1 .25-.25H7.7a1.25 1.25 0 0 0 0-2.5H2a1.25 1.25 0 0 0 0 2.5Z"/></symbol><symbol id="icon-triangle-down" viewBox="0 -3 40 40"><path d="M30.904 4.333A2.666 2.666 0 0 0 28.584 3H2.637a2.667 2.667 0 0 0-2.28 4l12.974 21.427a2.668 2.668 0 0 0 4.56 0L30.864 7a2.666 2.666 0 0 0 .04-2.667Z"/></symbol><symbol id="icon-triangle-right" viewBox="0 -3 40 40"><path d="M28.08 13.72 6.667.747a2.667 2.667 0 0 0-4 2.293v25.92A2.667 2.667 0 0 0 4 31.293a2.747 2.747 0 0 0 2.667 0L28 18.32a2.666 2.666 0 0 0 0-4.56l.08-.04Z"/></symbol><symbol id="icon-triangle-up" viewBox="0 -3 40 40"><path d="M31.253 25.333 18.28 3.907a2.667 2.667 0 0 0-4.56 0L.747 25.333a2.667 2.667 0 0 0 2.28 4h25.946a2.666 2.666 0 0 0 2.28-4Z"/></symbol><symbol id="icon-undo" viewBox="0 0 24 24"><path d="M17.79 3.77a12.54 12.54 0 0 0-13-.86.24.24 0 0 1-.29-.05L1.94.27a.53.53 0 0 0-.55-.11.51.51 0 0 0-.31.46v6.7a.51.51 0 0 0 .5.5h6.7a.5.5 0 0 0 .46-.31.49.49 0 0 0-.11-.51L6.78 5.11a.22.22 0 0 1-.06-.22.23.23 0 0 1 .15-.18 9.94 9.94 0 0 1 9.46 1.1 9.74 9.74 0 0 1 .1 15.8 1.25 1.25 0 0 0-.27 1.75 1.22 1.22 0 0 0 1 .51 1.25 1.25 0 0 0 .73-.24 12.25 12.25 0 0 0-.11-19.86Z"/></symbol><symbol id="icon-upload" viewBox="0 0 32 31"><path d="M.796 21.663a1.607 1.607 0 0 1 1.646 0c.508.302.812.859.795 1.453v2.499a2.108 2.108 0 0 0 2.097 2.114h21.054a2.108 2.108 0 0 0 2.096-2.114v-2.499a1.637 1.637 0 0 1 .795-1.453 1.607 1.607 0 0 1 1.646 0c.508.302.812.859.796 1.453v2.499c-.003 2.97-2.39 5.377-5.333 5.38H5.334C2.39 30.992.004 28.585 0 25.615v-2.499a1.637 1.637 0 0 1 .795-1.453ZM15.861 0c.37 0 .724.155.976.428l6.477 7.504c.333.386.412.933.201 1.399-.21.465-.67.764-1.178.764H18.78c-.182 0-.33.149-.33.333v12.217c0 1.443-1.16 2.612-2.59 2.612s-2.588-1.169-2.588-2.612V10.43a.332.332 0 0 0-.33-.333H9.383a1.293 1.293 0 0 1-1.173-.763 1.314 1.314 0 0 1 .197-1.394l6.476-7.51A1.33 1.33 0 0 1 15.86 0Z" fill-rule="evenodd"/></symbol><symbol id="icon-user" viewBox="0 0 24 24"><path d="M12 11.75a5.5 5.5 0 1 1 0-11 5.5 5.5 0 0 1 0 11Zm0 1.5a9.511 9.511 0 0 1 9.5 9.5.5.5 0 0 1-.5.5H3a.5.5 0 0 1-.5-.5 9.511 9.511 0 0 1 9.5-9.5Z" fill-rule="nonzero"/></symbol></svg>
@@ -0,0 +1,138 @@
1
+ [scoped-v6] {
2
+
3
+ // <-- -- -- Header -- -- -->
4
+ .toggle-nav_button,
5
+ label,
6
+ button {
7
+ cursor: pointer;
8
+ }
9
+
10
+ .icon {
11
+ fill: currentColor;
12
+ display: inline-block;
13
+ position: relative;
14
+ text-decoration: none;
15
+ top: .125em;
16
+ height: 32px;
17
+ width: 32px;
18
+
19
+ &.icon--inline {
20
+ height: 1em;
21
+ width: 1em;
22
+ }
23
+ }
24
+
25
+ // This is a copy of the styling for anchor tags in the MDS
26
+ .link-like {
27
+ --link-color: var(--mds-color-link-base, #1b75bb);
28
+ --link-font-weight: var(--mds-font-weight-link-base);
29
+ --text-decoration: var(--mds-text-decoration-link-base, underline);
30
+ --text-decoration-thickness: 1px;
31
+ color: var(--link-color);
32
+ font-weight: var(--link-font-weight);
33
+ -webkit-text-decoration: var(--text-decoration);
34
+ text-decoration: var(--text-decoration);
35
+ text-decoration-thickness: var(--text-decoration-thickness);
36
+ text-underline-offset: .15rem;
37
+ }
38
+
39
+ .site-width-wrapper {
40
+ margin: 0 auto;
41
+ max-width: var(--mds-size-wrapper-max-width, 1240px);
42
+ width: calc(var(--mds-size-wrapper-width, 97%) - 20px);
43
+ }
44
+
45
+ // Mobile
46
+ .mobile-navbar {
47
+ position: relative;
48
+ display: flex;
49
+
50
+ .nav_item .icon {
51
+ display: none;
52
+ }
53
+
54
+ @media (min-width: 37.5em) {
55
+ display: none;
56
+ }
57
+ }
58
+
59
+ .toggle-nav--primary-nav {
60
+ margin-right: auto;
61
+ }
62
+
63
+ .toggle-nav_content {
64
+ position: absolute;
65
+ right: 0;
66
+ left: 0;
67
+ top: 100%;
68
+ z-index: 10;
69
+ background-color: white;
70
+ }
71
+
72
+ // Desktop
73
+ .main-banner {
74
+ display: flex;
75
+ justify-content: center;
76
+
77
+ .nav_item {
78
+ display: inline-block;
79
+ }
80
+
81
+ .secondary-navs {
82
+ margin-left: auto;
83
+ display: none;
84
+ flex-direction: column;
85
+ justify-content: space-between;
86
+ align-items: flex-end;
87
+ text-align: right;
88
+ }
89
+
90
+ @media (min-width: 37.5em) {
91
+
92
+ .secondary-navs {
93
+ display: flex;
94
+ }
95
+
96
+ .primary-nav {
97
+ display: block;
98
+ }
99
+ }
100
+
101
+ .switch-recruiter-form {
102
+ position: absolute;
103
+ background: white;
104
+ text-align: left;
105
+ }
106
+ }
107
+
108
+ .main-nav {
109
+ .primary-nav {
110
+ display: none;
111
+ }
112
+
113
+ .primary-nav_list {
114
+ display: flex;
115
+ }
116
+
117
+ @media (min-width: 37.5em) {
118
+ .primary-nav {
119
+ display: block;
120
+ }
121
+ }
122
+ }
123
+
124
+ // <-- -- -- Footer -- -- -->
125
+ .copyright {
126
+ background: #333;
127
+ padding: 24px;
128
+ margin: 24px 0 0 0;
129
+ color: white;
130
+ text-align: center;
131
+ font-size: .9em;
132
+
133
+ a {
134
+ text-decoration: underline;
135
+ color: white;
136
+ }
137
+ }
138
+ }
@@ -0,0 +1 @@
1
+ import './css/styles.scss';
@@ -0,0 +1,22 @@
1
+ {% set mainNavigation = [
2
+ {
3
+ "href": "/",
4
+ "label": "Home",
5
+ "openInNewWindow": false
6
+ },
7
+ {
8
+ "href": "/pricing",
9
+ "label": "Pricing",
10
+ "openInNewWindow": false
11
+ },
12
+ {
13
+ "href": "/job-listing",
14
+ "label": "Your jobs",
15
+ "openInNewWindow": false
16
+ },
17
+ {
18
+ "href": "/content",
19
+ "label": "Why post with us?",
20
+ "openInNewWindow": false
21
+ }
22
+ ] %}
@@ -0,0 +1,8 @@
1
+ {%- from templatePath + './translations/en.njk' import translations -%}
2
+
3
+ <div data-block="footer-main" scoped-v6="">
4
+ <p class="copyright">
5
+ © 2011 - {{ dayjs().format('YYYY') }} {{ translations.rsHeader["site-name"] }}. All rights reserved.
6
+ Powered by <a href="https://www.wiley.com/en-gb/business/workforce/madgex/solutions">Madgex Job Board Software</a>
7
+ </p>
8
+ </div>
@@ -0,0 +1,82 @@
1
+ {%- from templatePath + './translations/en.njk' import translations -%}
2
+ {%- from templatePath + "./includes/user-nav/user-nav.njk" import UserNavigation with context -%}
3
+
4
+ {%- ifAsync auth.isAuthenticated -%}
5
+ {% set primaryRecruiter = auth.artifacts.recruiters | selectattr("isPrimary") | first %}
6
+ {% set isAuthenticated = true %}
7
+ {%- endif -%}
8
+
9
+ <!-- HEADER-FOOTER-PODLET VERSION: {{ version }} -->
10
+ <div data-block="header-main" scoped-v6="">
11
+ <header role="banner" id="top-bar">
12
+
13
+ {# Mobile Navigation #}
14
+ <div class="mobile-navbar">
15
+
16
+ {# Main Navigation #}
17
+ <mds-dropdown-nav target="primary-nav_mobile" aria-label="{{ translations.header["primary-nav-button"] }}" class="toggle-nav_button toggle-nav--primary-nav">
18
+ <svg aria-hidden="true" focusable="false" class="icon" alt="">
19
+ <use href="/_/recruiterservices-frontend/assets/icons/icons.svg#icon-menu"></use>
20
+ </svg>
21
+ </mds-dropdown-nav>
22
+ <div id="primary-nav_mobile" class="toggle-nav_content">
23
+ {% include templatePath + './includes/primary-nav.njk' %}
24
+ </div>
25
+
26
+ {# Basket Navigation #}
27
+ {%- if isAuthenticated -%}
28
+ <mds-dropdown-nav target="basket-nav_mobile" aria-label="{{ translations.header["basket-nav-button"] }}" class="toggle-nav_button toggle-nav--basket-nav">
29
+ <svg aria-hidden="true" focusable="false" class="icon" alt="">
30
+ <use href="/_/recruiterservices-frontend/assets/icons/icons.svg#icon-cart"></use>
31
+ </svg>
32
+ </mds-dropdown-nav>
33
+ <div id="basket-nav_mobile" class="toggle-nav_content">
34
+ {% include templatePath + './includes/basket-nav.njk' %}
35
+ </div>
36
+ {%- endif -%}
37
+
38
+ {# User Navigation #}
39
+ <mds-dropdown-nav target="user-nav_mobile" aria-label="{{ translations.header["user-nav-button"] }}" class="toggle-nav_button toggle-nav--user-nav">
40
+ <svg aria-hidden="true" focusable="false" class="icon" alt="">
41
+ <use href="/_/recruiterservices-frontend/assets/icons/icons.svg#icon-user"></use>
42
+ </svg>
43
+ </mds-dropdown-nav>
44
+ <div id="user-nav_mobile" class="toggle-nav_content">
45
+ {{ UserNavigation({ switchCompanyForm: false, isAuthenticated: isAuthenticated, primaryRecruiter: primaryRecruiter }) }}
46
+ </div>
47
+ </div>
48
+
49
+ {# Main Banner #}
50
+ <div>
51
+ <div class="site-width-wrapper main-banner">
52
+
53
+ {# Primary Logo #}
54
+ <div class="primary-logo">
55
+ <a href="/">
56
+ <img src="/_/recruiterservices-frontend/assets/images/logo.png" alt="{{ translations.header["logo-alt"] }}"/>
57
+ </a>
58
+ </div>
59
+
60
+ <div class="secondary-navs">
61
+
62
+ {# User Navigation #}
63
+ {{ UserNavigation({ switchCompanyForm: true, isAuthenticated: isAuthenticated, primaryRecruiter: primaryRecruiter }) }}
64
+
65
+ {# Basket #}
66
+ {%- if isAuthenticated -%}
67
+ {% include templatePath + './includes/basket-nav.njk' %}
68
+ {%- endif -%}
69
+ </div>
70
+ </div>
71
+
72
+ {# Primary Navigation #}
73
+ <div>
74
+ <div class="site-width-wrapper main-nav">
75
+ {% include templatePath + './includes/primary-nav.njk' %}
76
+ </div>
77
+ </div>
78
+ </div>
79
+ </header>
80
+ </div>
81
+
82
+ <!-- END HEADER FRAGMENT -->
@@ -0,0 +1,25 @@
1
+ <nav aria-label="{{ translations.header["basket-nav"] }}">
2
+ <ul>
3
+ <li class="nav_item">
4
+ {%- set basketText -%}
5
+ <svg aria-hidden="true" focusable="false" alt="" class="icon icon--inline">
6
+ <use href="/_/recruiterservices-frontend/assets/icons/mds-icons.svg#icon-cart"></use>
7
+ </svg>
8
+ {{ translations.header["basket"] }} {{ primaryRecruiter.basketCount }}
9
+ {%- endset -%}
10
+ {% if primaryRecruiter.basketCount > 0 %}
11
+ <a href="/checkout/create-order">{{ basketText | safe }}</a>
12
+ {% else %}
13
+ {{ basketText | safe }}
14
+ {% endif %}
15
+ </li>
16
+ {% if primaryRecruiter.hasCredits %}
17
+ <li class="nav_item">
18
+ <a href="/credit-balance">{{ translations.header["credit-balance"] }}</a>
19
+ </li>
20
+ {% endif %}
21
+ <li class="nav_item">
22
+ <a href="/orders">{{ translations.header["orders"] }}</a>
23
+ </li>
24
+ </ul>
25
+ </nav>
@@ -0,0 +1,18 @@
1
+ {%- from templatePath + 'context/primary-nav-links.njk' import mainNavigation -%}
2
+
3
+ <nav class="primary-nav" aria-label="{{ translations.header["primary-nav"] }}">
4
+ <ul class="primary-nav_list">
5
+ {% for item in mainNavigation %}
6
+ <li class="primary-nav_item primary-nav_item--index-{{loop.index0}}
7
+ {%- if item.href | normaliseUrl === path %} primary-nav_item--active{% endif -%}
8
+ {%- if loop.last %} primary-nav_item--last{% endif -%}">
9
+ <a class="primary-nav_link"
10
+ href="{{ item.href }}"
11
+ {%- if item.openInNewWindow -%} target="_blank" rel="noopener" {% endif %}>
12
+ <span class="primary-nav_label">{{- item.label | safe -}}</span>
13
+ {%- if item.openInNewWindow %}<span class="hidden">{{ translations.header["link-new-window"] }}</span>{% endif %}
14
+ </a>
15
+ </li>
16
+ {% endfor %}
17
+ </ul>
18
+ </nav>
@@ -0,0 +1,36 @@
1
+ <ul>
2
+ <li class="nav_item">
3
+ <a href="/company">{{ params.primaryRecruiter.name | safe }}
4
+ <svg aria-hidden="true" focusable="false" class="icon icon--inline" alt="">
5
+ <use href="/_/recruiterservices-frontend/assets/icons/icons.svg#icon-settings"></use>
6
+ </svg>
7
+ </a>
8
+ </li>
9
+ {% if auth.artifacts.recruiters.length > 1 %}
10
+ <li class="nav_item">
11
+ {% if params.switchCompanyForm %}
12
+ <mds-dropdown-nav target="switch-recruiter-form" class="toggle-nav_button">
13
+ <span class="link-like">{{ translations.header["switch-recruiter"] }}</span>
14
+ </mds-dropdown-nav>
15
+ <div id="switch-recruiter-form">
16
+ {% include templatePath + './switch-recruiters.njk' %}
17
+ </div>
18
+ {% else %}
19
+ <a href="/switch-company">{{ translations.header["switch-recruiter"] }}</a>
20
+ {% endif %}
21
+ </li>
22
+ {% endif %}
23
+ <li class="nav_item">
24
+ <a href="/account">{{ auth.credentials.username | safe }}
25
+ <svg aria-hidden="true" focusable="false" class="icon icon--inline" alt="">
26
+ <use href="/_/recruiterservices-frontend/assets/icons/icons.svg#icon-settings"></use>
27
+ </svg>
28
+ </a>
29
+ </li>
30
+ <li class="nav_item">
31
+ <a href="/logout">{{ translations.header["sign-out"] }}</a>
32
+ </li>
33
+ <li class="nav_item">
34
+ <a href="/JOBSEEKERS-LINK">{{ translations.header["jobseekers-link"] }}</a>
35
+ </li>
36
+ </ul>
@@ -0,0 +1,13 @@
1
+ <form class="switch-recruiter-form" method="post" action="/switch-company/">
2
+ <input type="hidden" name="PipelinedPage" value="{{ path }}">
3
+ {# TODO add query to context #}
4
+ <input type="hidden" name="PipelinedQueryString" value="">
5
+ {% for recruiter in auth.artifacts.recruiters %}
6
+ <div>
7
+ <input type="radio" name="recruiter" value="{{recruiter.id}}" id="RecruiterId{{recruiter.id}}"
8
+ {% if recruiter.isPrimary %}checked{% endif %}>
9
+ <label for="RecruiterId{{recruiter.id}}" >{{ recruiter.name }}</label>
10
+ </div>
11
+ {% endfor %}
12
+ <button>{{ translations.header["switch-recruiter"] }}</button>
13
+ </form>
@@ -0,0 +1,11 @@
1
+ <ul>
2
+ <li class="nav_item">
3
+ <a href="/login">{{ translations.header["log-in"] }}</a>
4
+ </li>
5
+ <li class="nav_item">
6
+ <a href="/register">{{ translations.header["register"] }}</a>
7
+ </li>
8
+ <li class="nav_item">
9
+ <a href="/JOBSEEKERS-LINK">{{ translations.header["jobseekers-link"] }}</a>
10
+ </li>
11
+ </ul>
@@ -0,0 +1,9 @@
1
+ {% macro UserNavigation(params) %}
2
+ <nav aria-label="{{ translations.header["user-nav"] }}">
3
+ {%- if params.isAuthenticated %}
4
+ {% include templatePath + './authenticated.njk' %}
5
+ {%- else %}
6
+ {% include templatePath + './unauthenticated.njk' %}
7
+ {% endif -%}
8
+ </nav>
9
+ {% endmacro %}
@@ -0,0 +1,28 @@
1
+ {#
2
+ Update to logo-alt to "[ brand name ] homepage"
3
+ #}
4
+
5
+ {% set translations = {
6
+ header: {
7
+ "site-name": "Madgex",
8
+ "logo-alt": "Madgex homepage",
9
+
10
+ "primary-nav": "Main",
11
+ "basket-nav": "Basket",
12
+ "user-nav": "User",
13
+
14
+ "primary-nav-button": "Main menu",
15
+ "basket-nav-button": "Basket menu",
16
+ "user-nav-button": "User menu",
17
+
18
+ "log-in": "Log in",
19
+ "sign-out": "Sign out",
20
+ "register": "Register",
21
+ "switch-recruiter": "Switch recruiter",
22
+ "jobseekers-link": "Jobseekers",
23
+
24
+ "basket": "Basket:",
25
+ "credit-balance": "Credit balance",
26
+ "orders": "Orders"
27
+ }
28
+ } %}
@@ -38,4 +38,14 @@ export default ({ fertConfig }) => [
38
38
  },
39
39
  },
40
40
  },
41
+ {
42
+ method: 'get',
43
+ path: '/design-system.js',
44
+ handler: {
45
+ file: {
46
+ path: fileURLToPath(import.meta.resolve('@madgex/design-system/index.js')),
47
+ confine: false, // allow access outside of the fert project (helpful during dev)
48
+ },
49
+ },
50
+ },
41
51
  ];
package/server/server.js CHANGED
@@ -9,7 +9,7 @@ import viewManager from './view-manager.js';
9
9
 
10
10
  import { log } from '../bin/utils/logging.js';
11
11
  import podletServer from '@private/header-footer-podlet-server';
12
- import { VERSION, PROPERTY_ID_API, ASSETS_API_URL } from '../constants.js';
12
+ import { VERSION, PROPERTY_ID_API, ASSETS_API_URL, MOCK_AUTH_OBJECT } from '../constants.js';
13
13
 
14
14
  import routesPublic from './routes/public.js';
15
15
  import routesViews from './routes/views.js';
@@ -19,6 +19,7 @@ export async function devServer({ start, fertConfig = {}, port } = {}) {
19
19
  const server = Hapi.server({
20
20
  port: port || 0, // 0 === random unused port
21
21
  host: fertConfig.cli?.host ?? 'localhost',
22
+ debug: { log: ['nunjucks'] },
22
23
  });
23
24
 
24
25
  // "the path prefix used to locate static resources (files and view templates) when relative paths are used"
@@ -71,15 +72,9 @@ export async function devServer({ start, fertConfig = {}, port } = {}) {
71
72
  // mocked logged in
72
73
  Toys.auth.strategy(server, 'mock-user', (request, h) => {
73
74
  if (Object.prototype.hasOwnProperty.call(request.query, 'loggedin')) {
74
- const user = {
75
- email: 'email@madgex.com',
76
- firstName: 'Samus',
77
- lastName: 'Aran',
78
- userId: 'b5699145-e867-4b47-8b18-f81247948dbb',
79
- username: 'Samus Aran',
80
- };
81
-
82
- return h.authenticated({ credentials: user });
75
+ const mockAuth = MOCK_AUTH_OBJECT[fertConfig.serviceName] || {};
76
+
77
+ return h.authenticated(mockAuth);
83
78
  }
84
79
 
85
80
  return h.continue;
@@ -6,6 +6,7 @@
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1">
7
7
  <link rel="stylesheet" href="/public/tokens/css-vars/variables.css">
8
8
  <link rel="stylesheet" href="/design-system.css">
9
+ <script src="/design-system.js"></script>
9
10
  {%- for link in fertConfig.externalAssets.links %}
10
11
  <link {%- for key, value in link %} {{ key }}="{{ value }}" {%- endfor %}/>
11
12
  {%- endfor -%}
@@ -1,6 +1,6 @@
1
1
  import path from 'node:path';
2
2
  import Nunjucks from 'nunjucks';
3
- import { CUSTOM_TEMPLATES_DIR } from '../constants.js';
3
+ import { CUSTOM_TEMPLATES_DIR, MDS_PATH } from '../constants.js';
4
4
 
5
5
  export default (server) => {
6
6
  const fertConfig = server.fertConfig();
@@ -30,8 +30,10 @@ export default (server) => {
30
30
  },
31
31
  },
32
32
  path: [
33
- path.join(fertConfig.workingDir, CUSTOM_TEMPLATES_DIR), // user-created 'pages'
34
- path.join(import.meta.dirname, './templates'), // fert-local base templates
33
+ path.resolve(fertConfig.workingDir, CUSTOM_TEMPLATES_DIR), // user-created 'pages'
34
+ path.resolve(import.meta.dirname, './templates'), // fert-local base templates
35
+ path.resolve(MDS_PATH, 'src/components'), // Design system components
36
+ path.resolve(MDS_PATH, 'dist/assets'), // Design system assets
35
37
  ],
36
38
  isCached: false,
37
39
  async context(request) {