-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (54 loc) · 1.27 KB
/
Copy pathindex.html
File metadata and controls
59 lines (54 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Self-Supervised Learning for Motor Decoding Report</title>
<style>
html, body {
margin: 0;
height: 100%;
font-family: system-ui, -apple-system, sans-serif;
background: #f5f5f5;
}
.wrapper {
max-width: 960px;
margin: 0 auto;
padding: 2rem 1rem 3rem;
}
h1 {
margin-bottom: 0.5rem;
}
.meta {
color: #555;
margin-bottom: 1rem;
}
.pdf-container {
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
border-radius: 4px;
overflow: hidden;
background: white;
}
iframe {
width: 100%;
height: 80vh;
border: none;
}
.fallback {
margin-top: 0.75rem;
font-size: 0.9rem;
}
</style>
</head>
<body>
<div class="wrapper">
<h1>Self-Supervised Learning for Motor Decoding Report</h1>
<div class="meta">Author: Hugo Demule · Date: January 2026</div>
<div class="pdf-container">
<iframe src="ssl-motor-decoding.pdf"></iframe>
</div>
<div class="fallback">
<a href="ssl-motor-decoding.pdf" target="_blank" rel="noopener">Open the PDF in a new tab</a>.
</div>
</div>
</body>
</html>