forked from JuanjoSalvador/hyde
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (36 loc) · 1.46 KB
/
index.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
---
layout: default
title: Home
---
<img style="height: 300px; float: left; margin-top: 0;" src="{{ site.baseurl }}public/images/wordcloud.png" alt="my wordcloud" />
<!--
<img style="height: 200px; float: left; margin: 0 6%; display: none;" src="{{ site.baseurl }}public/images/header.png" alt="Welcome" />
-->
<p style="clear:both; padding-top: 1em;">
I'm Fabio Maria Carlucci a Research Scientist at Huawei, London. Previously, I completed a PhD in Machine Learning and Computer Vision. </p>
<a href="/about/">About</a> - <a href="/education/">Education and Experiences</a> - <a href="/publications/">Publications</a>
<h1>Latest news</h1>
<ul class="posts">
{% for post in paginator.posts %}
<li class="post">
<span class="post-date">{{ post.date | date_to_string }}: </span>
{{ post.excerpt | remove: '<p>' | remove: '</p>' }}
</li>
{% endfor %}
</ul>
<div class="pagination">
{% if paginator.next_page %}
<a class="pagination-item older" href="{{ site.baseurl }}page{{paginator.next_page}}">Older</a>
{% else %}
<span class="pagination-item older">Older</span>
{% endif %}
{% if paginator.previous_page %}
{% if paginator.page == 2 %}
<a class="pagination-item newer" href="{{ site.baseurl }}">Newer</a>
{% else %}
<a class="pagination-item newer" href="{{ site.baseurl }}page{{paginator.previous_page}}">Newer</a>
{% endif %}
{% else %}
<span class="pagination-item newer">Newer</span>
{% endif %}
</div>