diff options
-rw-r--r-- | _includes/footer.html | 2 | ||||
-rw-r--r-- | _includes/header.html | 4 | ||||
-rw-r--r-- | css/common/footer.css (renamed from css/footer.css) | 0 | ||||
-rw-r--r-- | css/common/misc.css (renamed from css/misc.css) | 2 | ||||
-rw-r--r-- | index.html | 15 |
5 files changed, 17 insertions, 6 deletions
diff --git a/_includes/footer.html b/_includes/footer.html index 2e9f717..1d5180e 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -6,7 +6,7 @@ <div style="display: table; width: 100%;"> <div style="display: table-row;"> <div style="display: table-cell;"> - <div class="text-center text-muted"><small>This project is licensed under the terms of the MIT License. See <a href="{{ site.github.repository_url }}#license">License</a> for details.</small></div> + <div class="text-center text-muted"><small>This project is licensed under the terms of the MIT License. See <a href="{{ site.github.repository_url }}/blob/master/README.md#license">License</a> for details.</small></div> </div> </div> <div style="display: table-row;"> diff --git a/_includes/header.html b/_includes/header.html index 0bca973..ff3a737 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -9,8 +9,8 @@ {% include bootstrap_css.html %} - <link rel="stylesheet" href="/css/footer.css"> - <link rel="stylesheet" href="/css/misc.css"> + <link rel="stylesheet" href="/css/common/footer.css"> + <link rel="stylesheet" href="/css/common/misc.css"> {% include ie_compat.html %} </head> diff --git a/css/footer.css b/css/common/footer.css index 417b3d9..417b3d9 100644 --- a/css/footer.css +++ b/css/common/footer.css diff --git a/css/misc.css b/css/common/misc.css index 06c6675..49072c4 100644 --- a/css/misc.css +++ b/css/common/misc.css @@ -1,3 +1,3 @@ -.reasonable-width { +.wide-enough { max-width: 400px; } @@ -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> |