diff options
Diffstat (limited to '_includes')
| -rw-r--r-- | _includes/head.html | 2 | ||||
| -rw-r--r-- | _includes/sidebar.html | 6 | 
2 files changed, 4 insertions, 4 deletions
| diff --git a/_includes/head.html b/_includes/head.html index 5710769..035aad2 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -7,7 +7,7 @@      <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />      <title> -        {% if page.title == "index" %} +        {% if page.id == "index" %}              {{ site.title | smartify | strip_html | normalize_whitespace }}          {% else %}              {{ page.title | smartify | strip_html | normalize_whitespace }} · diff --git a/_includes/sidebar.html b/_includes/sidebar.html index 34461b9..3438fc8 100644 --- a/_includes/sidebar.html +++ b/_includes/sidebar.html @@ -3,7 +3,7 @@          <div class="sidebar-about">              <!-- Header -->              <a href="{{ site.baseurl | uri_escape }}"> -                {% if page.title == "index" %} +                {% if page.id == "index" %}                      <h1>{{ site.title | smartify | strip_html | normalize_whitespace }}</h1>                  {% else %}                      <h1>{{ page.title | smartify | strip_html | normalize_whitespace }}</h1> @@ -12,7 +12,7 @@              <!-- Description -->              <p class="lead"> -                {% if page.title == "index" %} +                {% if page.id == "index" %}                      {{ site.description | smartify | strip_html | normalize_whitespace }}                  {% else %}                      {{ page.description | smartify | strip_html | normalize_whitespace }} @@ -22,7 +22,7 @@          <!-- Navigation -->          <nav class="sidebar-nav"> -            <a class="sidebar-nav-item {% if page.title == "index" %}active{% endif %}" href="{{ site.baseurl | uri_escape }}">Домашняя страница</a> +            <a class="sidebar-nav-item {% if page.id == "index" %}active{% endif %}" href="{{ site.baseurl | uri_escape }}">Домашняя страница</a>              {% for node in site.pages %}                  {% if node.sidebar == true %}                      <a class="sidebar-nav-item {% if page.url == node.url %}active{% endif %}" href="{{ node.url | relative_url | uri_escape }}"> | 
