From c50335effd87dfc0ee856b127d75514878532c29 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sat, 25 Jun 2016 01:37:15 +0300 Subject: css/ -> css/common/ --- _includes/footer.html | 2 +- _includes/header.html | 4 ++-- css/common/footer.css | 23 +++++++++++++++++++++++ css/common/misc.css | 3 +++ css/footer.css | 23 ----------------------- css/misc.css | 3 --- index.html | 15 +++++++++++++-- 7 files changed, 42 insertions(+), 31 deletions(-) create mode 100644 css/common/footer.css create mode 100644 css/common/misc.css delete mode 100644 css/footer.css delete mode 100644 css/misc.css 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 @@
-
This project is licensed under the terms of the MIT License. See License for details.
+
This project is licensed under the terms of the MIT License. See License for details.
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 %} - - + + {% include ie_compat.html %} diff --git a/css/common/footer.css b/css/common/footer.css new file mode 100644 index 0000000..417b3d9 --- /dev/null +++ b/css/common/footer.css @@ -0,0 +1,23 @@ +html, body { + height: 100%; + width: 100%; +} +.top-level-footer-wrapper { + height: 100%; + width: 100%; + display: table; +} +.footer-wrapper-collapse { + display: table-row; + height: 1px; +} +.footer-wrapper-expand { + display: table-row; + height: auto; +} +footer { + margin-top: 20px; + padding: 15px 0 15px; + border-width: 1px 0; + border-style: solid; +} diff --git a/css/common/misc.css b/css/common/misc.css new file mode 100644 index 0000000..49072c4 --- /dev/null +++ b/css/common/misc.css @@ -0,0 +1,3 @@ +.wide-enough { + max-width: 400px; +} diff --git a/css/footer.css b/css/footer.css deleted file mode 100644 index 417b3d9..0000000 --- a/css/footer.css +++ /dev/null @@ -1,23 +0,0 @@ -html, body { - height: 100%; - width: 100%; -} -.top-level-footer-wrapper { - height: 100%; - width: 100%; - display: table; -} -.footer-wrapper-collapse { - display: table-row; - height: 1px; -} -.footer-wrapper-expand { - display: table-row; - height: auto; -} -footer { - margin-top: 20px; - padding: 15px 0 15px; - border-width: 1px 0; - border-style: solid; -} diff --git a/css/misc.css b/css/misc.css deleted file mode 100644 index 06c6675..0000000 --- a/css/misc.css +++ /dev/null @@ -1,3 +0,0 @@ -.reasonable-width { - max-width: 400px; -} diff --git a/index.html b/index.html index e5706b8..0c9dd14 100644 --- a/index.html +++ b/index.html @@ -4,32 +4,43 @@ layout: main ---
+

{{ site.personal_info.name }}


+

Hello! I'm a software engineer, and I'll be publishing some of my notes on GitHub Pages. Feel free to make contributions or contact me.

-
+ +
+  GitHub profile + {% if site.personal_info.email %}  {{ site.personal_info.email }} {% endif %} + {% if site.personal_info.cv_url %}  Curriculum vitae {% endif %} + {% if site.personal_info.linkedin_url %}  LinkedIn profile {% endif %} +
+ {% if site.personal_info.gpg %}

My personal GnuPG public key can be found here. Its fingerprint is {{ site.personal_info.gpg.fingerprint }}.

{% endif %} + {% if site.personal_info.projects %}

Projects

-
+
{% for project in site.personal_info.projects %}  {{ project.name }} {% endfor %}
{% endif %} +
-- cgit v1.2.3