From 0bf59677249ff726ad467209a82932048ff62fa4 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sun, 27 Nov 2016 15:43:01 +0300 Subject: fix markup semantics --- _includes/common/sidebar.html | 9 ++++++--- css/common/misc.css | 11 +++++++++++ index.html | 15 +++------------ 3 files changed, 20 insertions(+), 15 deletions(-) diff --git a/_includes/common/sidebar.html b/_includes/common/sidebar.html index e6041c3..5b5eb9d 100644 --- a/_includes/common/sidebar.html +++ b/_includes/common/sidebar.html @@ -1,4 +1,4 @@ -

About the project

+

About the project

{{ site.project.description }}. Feel free to contribute or contact me.

 GitHub repository @@ -6,13 +6,16 @@

The implemented algorithms have been plotted to study their performance. You can examine the plots here.

-

Latest posts

+

Latest posts

{% if site.posts.size == 0 %}

Sorry, there're no posts yet.

{% else %}
{% for post in site.posts limit: 5 %} -  {{ post.date | date_to_string }} {{ post.title }} + +  {{ post.date | date_to_string }} +  {{ post.title }} + {% endfor %}
{% endif %} diff --git a/css/common/misc.css b/css/common/misc.css index 49072c4..617aced 100644 --- a/css/common/misc.css +++ b/css/common/misc.css @@ -1,3 +1,14 @@ .wide-enough { max-width: 400px; } +.wider { + max-width: 600px; +} +h1 a, +h2 a, +h3 a, +h4 a, +h5 a, +h6 a { + color: inherit; +} diff --git a/index.html b/index.html index 9066aa6..82a44c9 100644 --- a/index.html +++ b/index.html @@ -6,23 +6,14 @@ groups: navbar_link:  Main page --- {% if site.posts.size == 0 %} -

Sorry, no posts have been added yet.

+

Sorry, no posts have been added yet.

But I've made quite a few plots which you might want to check out.


{% else %} {% for post in paginator.posts %} -

{{ post.title }}

+

{{ post.title }}

{{ post.excerpt }}

-
-
-
- Read More  -
-
-   Posted on {{ post.date | date_to_long_string }} -
-
-
+

Posted on {{ post.date | date_to_long_string }}


{% endfor %}
-- cgit v1.2.3