-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ejs
More file actions
87 lines (87 loc) · 2.58 KB
/
index.ejs
File metadata and controls
87 lines (87 loc) · 2.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="<%- locale %>">
<%- include("ejs/common/_head", {
title: t("top-title"),
url: absolutePath(filename),
imageurl: "/images/logo_250dpi.png",
description: t("ymodify-desc"),
keywords: t("top-keywords")
}) %>
<body>
<%- include("ejs/common/_header") %>
<main role="main">
<%- include("ejs/_slider", { items: [
{
title: "YamaX",
description: t("slider-humanoid"),
image: "/images/back3.jpg",
},
{
title: "Ozone OS",
description: t("slider-ozone"),
image: "/images/ozoneb.jpg",
},
{
title: "DeepL2",
description: t("slider-deepl2"),
image: "/images/deepl2.png",
}
]}) %>
<%- include("ejs/_intro", {
socials: true,
description: t("ymodify-desc")
}) %>
<ul class="ulist">
<%- include("ejs/_herounit", {
title: "YamaX",
subtitle: "An Opened Humanoid Robot",
background: "/images/yamax.jpg",
about: t("top-yamax"),
points: [t("top-yamax-structure"), t("top-yamax-actions"), t("top-yamax-linux")],
buttons: [{
string: "Watch video",
href: "https://www.youtube.com/embed/jUPOa_gRJfY?rel=0&autoplay=1",
className: "youtube",
},{
string: "Read more",
href: `/${locale}/yamax/`,
},],
}) %>
<%- include("ejs/_herounit", {
idName: "deepl2",
title: "DeepL2",
subtitle: "Motion automation using Deep Reinforcement Learning",
background: "/images/deepl2-hero.png",
about: t("top-deepl2"),
points: [t("top-deepl2-learn"), t("top-deepl2-share"), t("top-deepl2-diff")],
buttons: [{
string: "Read more",
href: `/${locale}/deepl2/`,
},{
string: "GitHub",
href: "https://github.com/Y-modify/deepl2",
},{
string: "Coming soon as a service",
className: "disabled",
}],
}) %>
<%- include("ejs/_herounit", {
title: "Ozone OS",
subtitle: "Alternative OSs for Intel Edison",
background: "/images/ozoneb.jpg",
about: t("top-ozone"),
points: ["Debian, CentOS, Fedora are available now", t("top-ozone-another"), t("top-ozone-open")],
buttons: [{
string: "Read more",
href: "http://ozone.y-modify.org/",
},{
string: "Download now",
href: "http://ozone.y-modify.org/download",
},],
}) %>
</ul>
</main>
<%- include("ejs/common/_footer") %>
<%- include("ejs/common/_scripts") %>
</body>
</html>