create-elit 3.2.9 → 3.3.0
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.
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const users = [];
|
|
@@ -1,19 +1,22 @@
|
|
|
1
1
|
import { footer, div, p, a } from 'elit/el';
|
|
2
2
|
|
|
3
3
|
export function Footer() {
|
|
4
|
+
const today = new Date();
|
|
5
|
+
const year = today.getFullYear();
|
|
6
|
+
|
|
4
7
|
return footer({ className: 'footer' },
|
|
5
8
|
div({ className: 'footer-content' },
|
|
6
9
|
div({ className: 'footer-section' },
|
|
7
|
-
p({ className: 'footer-title' }, '
|
|
10
|
+
p({ className: 'footer-title' }, 'ELIT_PROJECT_NAME'),
|
|
8
11
|
p({ className: 'footer-text' }, 'Built with Elit Framework')
|
|
9
12
|
),
|
|
10
13
|
div({ className: 'footer-section' },
|
|
11
|
-
a({ href: 'https://github.com', target: '_blank', className: 'footer-link' }, 'GitHub'),
|
|
12
|
-
a({ href: '
|
|
14
|
+
a({ href: 'https://github.com/n-devs', target: '_blank', className: 'footer-link' }, 'GitHub'),
|
|
15
|
+
a({ href: 'https://d-osc.github.io/elit/#/docs', className: 'footer-link' }, 'Documentation'),
|
|
13
16
|
a({ href: '#', className: 'footer-link' }, 'Support')
|
|
14
17
|
),
|
|
15
18
|
div({ className: 'footer-section' },
|
|
16
|
-
p({ className: 'footer-copyright' },
|
|
19
|
+
p({ className: 'footer-copyright' }, `© ${year} ELIT_PROJECT_NAME. All rights reserved.`)
|
|
17
20
|
)
|
|
18
21
|
)
|
|
19
22
|
);
|