From 469719e7e4955ca15cc977e0a899bdc07fd657bc Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Tue, 30 May 2017 04:55:24 +0300 Subject: renamed layout 'main' to 'plain' --- _layouts/main.html | 3 --- _layouts/plain.html | 7 +++++++ index.html | 60 ++++++++++++++++++++++++----------------------------- 3 files changed, 34 insertions(+), 36 deletions(-) delete mode 100644 _layouts/main.html create mode 100644 _layouts/plain.html diff --git a/_layouts/main.html b/_layouts/main.html deleted file mode 100644 index 8254f8d..0000000 --- a/_layouts/main.html +++ /dev/null @@ -1,3 +0,0 @@ -{% include common/header.html %} -{{ content }} -{% include common/footer.html %} diff --git a/_layouts/plain.html b/_layouts/plain.html new file mode 100644 index 0000000..db09984 --- /dev/null +++ b/_layouts/plain.html @@ -0,0 +1,7 @@ +{% include common/header.html %} +
+
+ {{ content }} +
+
+{% include common/footer.html %} diff --git a/index.html b/index.html index 0c9dd14..0e1f51c 100644 --- a/index.html +++ b/index.html @@ -1,46 +1,40 @@ --- title: Main page -layout: main +layout: plain --- -
-
+

{{ site.personal_info.name }}

+
-

{{ 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.

-

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 -  GitHub profile + {% if site.personal_info.email %} +  {{ site.personal_info.email }} + {% endif %} - {% if site.personal_info.email %} -  {{ site.personal_info.email }} - {% endif %} + {% if site.personal_info.cv_url %} +  Curriculum vitae + {% endif %} - {% if site.personal_info.cv_url %} -  Curriculum vitae - {% endif %} + {% if site.personal_info.linkedin_url %} +  LinkedIn profile + {% endif %} - {% if site.personal_info.linkedin_url %} -  LinkedIn profile - {% endif %} - -
+
- {% if site.personal_info.gpg %} -

My personal GnuPG public key can be found here. +{% 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 %} - +{% endif %} + +{% if site.personal_info.projects %} +

Projects

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