diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-06-25 01:37:15 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-06-25 01:37:15 +0300 |
commit | c50335effd87dfc0ee856b127d75514878532c29 (patch) | |
tree | 309fe24c4f300dd565e1fe6cfc36e64af4335731 /index.html | |
parent | README update (diff) | |
download | egor-tensin.github.io-c50335effd87dfc0ee856b127d75514878532c29.tar.gz egor-tensin.github.io-c50335effd87dfc0ee856b127d75514878532c29.zip |
css/ -> css/common/
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 15 |
1 files changed, 13 insertions, 2 deletions
@@ -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> 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> {{ 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> 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> 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> {{ project.name }}</a> {% endfor %} </div> {% endif %} + </div> </div> |