forked from victorvoid/space-jekyll-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
26 lines (19 loc) · 872 Bytes
/
about.html
File metadata and controls
26 lines (19 loc) · 872 Bytes
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
---
layout: minimal
title: "About me"
permalink: /about/index.html
description: "Some description about Thiago Rodrigues..."
---
<img itemprop="image" class="img-rounded about_perfil" src="{{site.profile_picture}}" alt="My profile">
<p>Hi, my name is Thiago. Maybe 'undersfx' in most places of the internet.</p>
<p>I'm a tech guy always up to learn something new, build something from scratch, understand a technology to its core or play a MTG game.</p>
<p>Currently in love with everything that Python language has to offer.</p>
<p>If you share any of this passions, awesome, let's talk about it!</p>
<h2>My work-in-progress projects</h2>
<div class="aboutme">
<ul class="recent">
{% for project in site.projects %}
<li><a href="{{ project.url}}"><h3 class="project-name" itemprop="name">{{ project.name }}</h3></a></li>
{% endfor %}
</ul>
</div>