@madgex/design-system 1.2.1 → 1.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.
- package/package.json +1 -1
- package/src/template.njk +47 -0
- /package/src/components/{Button → button}/_macro.njk +0 -0
- /package/src/components/{Button → button}/_template.njk +0 -0
- /package/src/components/{Button → button}/button.config.js +0 -0
- /package/src/components/{Button → button}/button.njk +0 -0
- /package/src/components/{Button → button}/button.scss +0 -0
package/package.json
CHANGED
package/src/template.njk
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="{{ htmlLang | default('en') }}" class="mds-template {{ htmlClasses }}">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<title>{% block pageTitle %}Madgex - A leading provider of recruitment technology creating best-fit connections between talented people and employers{% endblock %}</title>
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
|
|
7
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
8
|
+
{% block headIcons %}
|
|
9
|
+
{#
|
|
10
|
+
<link rel="shortcut icon" sizes="16x16 32x32 48x48" href="{{ assetPath | default('/assets') }}/images/favicon.ico" type="image/x-icon" />
|
|
11
|
+
<link rel="mask-icon" href="{{ assetPath | default('/assets') }}/images/mds-mask-icon.svg" color="{{ themeColor | default('#0b0c0c') }}">
|
|
12
|
+
<link rel="apple-touch-icon" sizes="180x180" href="{{ assetPath | default('/assets') }}/images/mds-apple-touch-icon-180x180.png">
|
|
13
|
+
<link rel="apple-touch-icon" sizes="167x167" href="{{ assetPath | default('/assets') }}/images/mds-apple-touch-icon-167x167.png">
|
|
14
|
+
<link rel="apple-touch-icon" sizes="152x152" href="{{ assetPath | default('/assets') }}/images/mds-apple-touch-icon-152x152.png">
|
|
15
|
+
<link rel="apple-touch-icon" href="{{ assetPath | default('/assets') }}/images/mds-apple-touch-icon.png">
|
|
16
|
+
#}
|
|
17
|
+
{% endblock %}
|
|
18
|
+
{% block head %}{% endblock %}
|
|
19
|
+
</head>
|
|
20
|
+
<body class="mds-template__body {{ bodyClasses }}">
|
|
21
|
+
<script>document.body.className = ((document.body.className) ? document.body.className + ' js-enabled' : 'js-enabled');</script>
|
|
22
|
+
{% block bodyStart %}{% endblock %}
|
|
23
|
+
|
|
24
|
+
{% block header %}
|
|
25
|
+
{#
|
|
26
|
+
{{ mdsHeader({}) }}
|
|
27
|
+
#}
|
|
28
|
+
{% endblock %}
|
|
29
|
+
|
|
30
|
+
{% block main %}
|
|
31
|
+
<div class="mds-width-container">
|
|
32
|
+
{% block beforeContent %}{% endblock %}
|
|
33
|
+
<main class="mds-main-wrapper {{ mainClasses }}" id="main-content" role="main">
|
|
34
|
+
{% block content %}{% endblock %}
|
|
35
|
+
</main>
|
|
36
|
+
</div>
|
|
37
|
+
{% endblock %}
|
|
38
|
+
|
|
39
|
+
{% block footer %}
|
|
40
|
+
{#
|
|
41
|
+
{{ mdsFooter({}) }}
|
|
42
|
+
#}
|
|
43
|
+
{% endblock %}
|
|
44
|
+
|
|
45
|
+
{% block bodyEnd %}{% endblock %}
|
|
46
|
+
</body>
|
|
47
|
+
</html>
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|