-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.pug
40 lines (34 loc) · 1.48 KB
/
index.pug
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
extends robotfrontend/structure/_layout.pug
block content
.topbar
.topbar-left#topLeft
.topbar-right#top
.container-fluid.px-sm-5
.row.py-3
.col-sm-10
h1.display-4 EMAR Robot Software Tools
.row
.col-sm-4
.card.bg-light.mb-3
.card-header
h3.text-info Robot Backend
.card-body
p.card-text.font-weight-light Back-end tools allow rendering the robot face and belly on tablets or simulate a robot on a screen or phone.
a.btn.btn-dark(href="robotbackend/index.html") Go to backend tools
.col-sm-4
.card.bg-light.mb-3
.card-header
h3.text-warning Robot Frontend
.card-body
p.card-text.font-weight-light Front-end tools allow administration and set up of different robots, editing of program content (robot faces, robot belly screens), and Wizard of Oz conrol of a robot.
a.btn.btn-dark(href="robotfrontend/index.html") Go to frontend tools
.col-sm-4
.card.bg-light.mb-3
.card-header
h3.text-danger Robot Programming
.card-body
p.card-text.font-weight-light The robot programming tool introduces the robot Application Programming Interface (API), and allows creating and running programs for robots in JavaScript.
a.btn.btn-dark(href="robotprogramming/index.html") Go to robot programming tools
.footer
block append scripts
script(src="scripts/index.js")