-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (42 loc) · 1.42 KB
/
index.html
File metadata and controls
47 lines (42 loc) · 1.42 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
---
layout: default
title: Matheus C. Santos Personal Webpage
---
<div id="home">
<div class="hero">
<div class="myphotodiv">
<img class="myphoto" src="img/avatar.jpg">
</div>
<div class="bio">
<p>
PhD student of Computer Science at the Federal University of Minas Gerais, Brazil. His research interest includes Big Data, distributed computing, performance analysis. He holds Bachelor and Masters degree in Computer Science by Unversidade Federal de Minas Gerais. He also interests in GPGPU programming, software engineering, complex networks and embedded systems.
</p>
</div>
</div>
<div class="homeCols">
<div class="projectsColumn">
<h1>Projects</h1>
{% assign pages_list = site.categories.project | sort:"importance" %}
{% for post in pages_list %}
<div class="project">
<div style="display:table;width:30em;padding:1em">
<div style="display:table-cell;">
<a target='_blank' href="{{ post.link }}"><img style="vertical-align:middle;width:15em" src ={{ post.logo }}></a>
</div>
<div style="display:table-cell;padding-left:2em;">
{{ post.subtitle }}
</div>
</div>
</div>
{% endfor %}
</div>
<div class="postsColumn">
<h1>Last Posts</h1>
<ul class="posts">
{% for post in site.posts limit:10 %}
<li><span>{{ post.date | date_to_string }}</span> - <a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
</div>
</div>