-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidepanel.pug
50 lines (50 loc) · 1.16 KB
/
sidepanel.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
41
42
43
44
45
46
47
48
49
50
#side-panel
#pp
#name= fullname
hr
// Personal Info
table
thead
tr
th Personal Information
tbody
each contact in contacts
tr
td.side-icon(style=`background-image:url('assets/side/${contact.icon}');`)
if contact.link
a(href=contact.link) #{contact.text}
else
| #{contact.text}
hr
// Links
table
thead
tr
th Links
tbody
each link in links
tr
td.side-icon(style=`background-image:url('assets/side/${link.icon}');`)
a(href=link.link) #{link.text}
hr
// Languages
.side-title Languages
.w-full.grid.grid-cols-2.gap-2
each language in languages
.skill-box.side-icon(style=`background-image:url('assets/side/${language.icon}');`) #{language.text}
hr
// Hobbies
table
thead
tr
th Hobbies
tbody
each hobby in hobbies
tr
td.side-icon(style=`background-image:url('assets/side/${hobby.icon}');`)= hobby.text
hr
// QR Codes
.flex-1
.w-full.flex.items-center.mt-2.gap-2
img(src="assets/side/qr.png").w-12
.w-full.text-center Visit my portfolio!