-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.template.html
53 lines (49 loc) · 1.51 KB
/
index.template.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{.Title}}</title>
<link rel="stylesheet" href="assets/simple.min.css">
<link rel="stylesheet" href="index.css">
<!-- TODO: meta -->
</head>
<body>
<header>
<nav>
<ul>
<li><a class="current" href="/">{{.Name}}</a></li>
<!-- TODO: better links -->
<li><a href="https://scholar.google.com/citations?user=11bAGfEAAAAJ">Publications</a></li>
<li><a href="assets/cv.pdf">CV</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h1>{{.Name}}</h1>
<div class="flex-container">
<div class="flex-element" id="profile-container">
<img id="profile" src="assets/profile.jpg" />
</div>
<div class="flex-element" id="about-me-text-container">
{{.AboutMe}}
<!-- TODO platforms links -->
</div>
</div>
</section>
<section>
<h1>News</h1>
<table id="news-table">
<tbody>
{{range .News}}
<tr>
<td>{{.Date}}</td>
<td>{{.Content}}</td>
</tr>
{{end}}
</tbody>
</table>
</section>
</main>
</body>