forked from felix11h/blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
84 lines (74 loc) · 2.15 KB
/
about.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
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
---
layout: page
title: About
---
<style>
.profileimg{
float:right;
display:block;
margin: -0.25em 2em 1em;
border-radius: 4px;}
@media (max-width: 800px) {
.profileimg {
float: none;
margin-right: auto;
margin-left: auto;
display: none;}
}
.profileimg_narrow{
float:right;
display:none;
margin: 2em auto -1em;
border-radius: 4px;}
@media (max-width: 800px) {
.profileimg_narrow {
float: none;
margin-right: auto;
margin-left: auto;
display: block;}
}
</style>
<p style="margin-top:2em;">
<img src="{{ site.baseurl }}/assets/2009_V2_300x300.jpg" class="profileimg" width="175px" />
<em>3 Diagrams per Page</em> is my personal blog for anything related to computational neuroscience, mathematics, physics, programming, open science and the tools I use to organize my thoughts and ideas.
</p>
<img src="{{ site.baseurl }}/assets/2009_V2_300x300.jpg" class="profileimg_narrow" width="150px" />
<p style="margin-top:3em;">
My name is <a href="http://felix11h.github.io/">Felix Z. Hoffmann</a> and I'm a PhD student in computational neuroscience in Frankfurt, Germany.
</p>
<style>
.fa_link{
color:gray;
}
.fa_link:hover{
color:#111;
}
</style>
<p style="margin-top:3em; text-align: center;">
<a href="https://github.com/Felix11H" class="fa_link" style="text-decoration:none;">
<i class="fa fa-github fa-lg"></i>
</a>
<a href="https://twitter.com/Felix11H" class="fa_link" style="text-decoration:none;">
<i class="fa fa-twitter fa-lg"> </i>
</a>
<a href="https://bitbucket.org/Felix11H/" class="fa_link" style="text-decoration:none;">
<i class="fa fa-bitbucket fa-lg"></i>
</a>
</p>
<div class="related" style="margin-top:20em;">
<h2>Recent Posts</h2>
<ul class="related-posts">
{% for post in site.posts limit:3 %}
<li>
<h3>
<a href="{{ site.baseurl }}{{ post.url }}">
{{ post.title }}
<small>{{ post.date | date_to_string }}</small>
</a>
</h3>
</li>
{% endfor %}
</ul>
</div>