-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcv.html
More file actions
133 lines (116 loc) · 4.21 KB
/
cv.html
File metadata and controls
133 lines (116 loc) · 4.21 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
---
layout: null
---
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
<meta content="width=device-width, initial-scale=1" name="viewport">
<title>{{ site.title }}</title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', '{{ site.google_analytics }}');
</script>
<link href="https://fonts.googleapis.com/css?family=Google+Sans|Noto+Sans|Castoro" rel="stylesheet">
<link href="./css/fontawesome.all.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons@1/css/academicons.min.css" rel="stylesheet">
<link href="./css/bulma.min.css" rel="stylesheet">
<link href="./css/cv.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script defer src="./js/fontawesome.all.min.js"></script>
</head>
<body>
<section>
<div class="container is-max-desktop">
<div class="columns is-vcentered">
<div class="column">
<h1 class="title is-2">{{ site.name }}</h1>
<h1 class="subtitle is-5">{{ site.position }}</h1>
</div>
<div class="column is-narrow portrait-column">
<img class="portrait-image" src="./images/portrait.png" alt="A portrait of Tim Puphal" />
</div>
<div class="column has-text-right">
<p>
<a href="{{ site.url }}">
<i class="fas fa-home"></i>
{% assign url_parts = site.url | split: "//" %}
{{ url_parts[1] }}
</a>
</p>
<p>
<a href="mailto:{{ site.email }}">
<i class="fas fa-envelope"></i>
{{ site.email }}
</a>
</p>
</div>
</div>
<div class="content">
<h2>Employment</h2>
{% for job in site.data.employment %}
<div class="columns">
<div class="column is-four-fifths">
<b>{{ job.company }}</b><br />
{{ job.description }}
</div>
<div class="column is-one-fifths has-text-right">
{{ job.dates }}
<br />
{{ job.location }}
</div>
</div>
{% endfor %}
<h2>Education</h2>
{% for school in site.data.education %}
<div class="columns">
<div class="column is-four-fifths">
<b>{{ school.name }}</b><br />
{{ school.description }}
</div>
<div class="column is-one-fifths has-text-right">
{{ school.dates }}
</div>
</div>
{% endfor %}
<h2>Publications</h2>
{% for publication in site.data.publications_all %}
<div class="columns">
<div class="column is-four-fifths">
{% if publication.project_page %}
<a href="{{ publication.project_page }}"><b>{{ publication.title }}</b></a>
{% else %}
<b>{{ publication.title }}</b>
{% endif %}
<div class="publication-authors">
{% for author_id in publication.authors %}
{% assign author = site.data.authors[author_id] %}
<span class="author-block {% if author.is_me %}author-me{% endif %}">
{% if author.is_me %}
{{ author.first_name | slice: 0 }}. {{ author.last_name }}{% if forloop.last == false %},{%
endif %}
{% else %}
<a href="{{ author.website }}">{{ author.first_name | slice: 0 }}. {{ author.last_name }}</a>{% if
forloop.last == false %},{% endif %}
{% endif %}
</span>
{% endfor %}
</div>
{{ publication.description }} <b>{{ publication.award }}</b>
</div>
<div class="column is-one-fifths has-text-right">
{{ publication.venue }}
</div>
</div>
{% endfor %}
</div>
</div>
</section>
</body>
</html>