aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/index.html
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2016-06-25 01:37:15 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2016-06-25 01:37:15 +0300
commitc50335effd87dfc0ee856b127d75514878532c29 (patch)
tree309fe24c4f300dd565e1fe6cfc36e64af4335731 /index.html
parentREADME update (diff)
downloadegor-tensin.github.io-c50335effd87dfc0ee856b127d75514878532c29.tar.gz
egor-tensin.github.io-c50335effd87dfc0ee856b127d75514878532c29.zip
css/ -> css/common/
Diffstat (limited to '')
-rw-r--r--index.html15
1 files changed, 13 insertions, 2 deletions
diff --git a/index.html b/index.html
index e5706b8..0c9dd14 100644
--- a/index.html
+++ b/index.html
@@ -4,32 +4,43 @@ layout: main
---
<div class="row">
<div class="col-md-12">
+
<h1>{{ site.personal_info.name }}</h1>
<hr/>
+
<p>Hello! I'm a software engineer, and I'll be publishing some of my notes on <a href="https://pages.github.com/">GitHub Pages</a>. Feel free to make contributions or contact me.</p>
- <div class="list-group reasonable-width">
+
+ <div class="list-group wide-enough">
+
<a class="list-group-item" href="{{ site.github.owner_url }}"><span class="glyphicon glyphicon-home"></span>&nbsp;GitHub profile</a>
+
{% if site.personal_info.email %}
<a class="list-group-item" href="mailto:{{ site.personal_info.email }}"><span class="glyphicon glyphicon-envelope"></span>&nbsp;{{ site.personal_info.email }}</a>
{% endif %}
+
{% if site.personal_info.cv_url %}
<a class="list-group-item" href="{{ site.personal_info.cv_url }}"><span class="glyphicon glyphicon-file"></span>&nbsp;Curriculum vitae</a>
{% endif %}
+
{% if site.personal_info.linkedin_url %}
<a class="list-group-item" href="{{ site.personal_info.linkedin_url }}"><span class="glyphicon glyphicon-zoom-in"></span>&nbsp;LinkedIn profile</a>
{% endif %}
+
</div>
+
{% if site.personal_info.gpg %}
<p>My personal GnuPG public key can be found <a href="{{ site.personal_info.gpg.public_key_url }}">here</a>.
Its fingerprint is <code style="white-space: pre-wrap;">{{ site.personal_info.gpg.fingerprint }}</code>.</p>
{% endif %}
+
{% if site.personal_info.projects %}
<h3>Projects</h3>
- <div class="list-group reasonable-width">
+ <div class="list-group wide-enough">
{% for project in site.personal_info.projects %}
<a class="list-group-item" href="{{ project.url }}"><span class="glyphicon glyphicon-chevron-right"></span>&nbsp;{{ project.name }}</a>
{% endfor %}
</div>
{% endif %}
+
</div>
</div>