diff options
| author | Valentin Popov <valentineus@gmail.com> | 2018-04-03 04:49:11 +0300 | 
|---|---|---|
| committer | Valentin Popov <valentineus@gmail.com> | 2018-04-03 04:49:11 +0300 | 
| commit | 03cf4f64761fb3f33863d6311e2aa6f3205caab1 (patch) | |
| tree | 208267f967cc861880812140d0ecdb5e917649ed /_layouts/default.html | |
| parent | 7595790fe9ea3c4a3ebaadb8ffb4e9644b65e484 (diff) | |
| download | popov.link-03cf4f64761fb3f33863d6311e2aa6f3205caab1.tar.xz popov.link-03cf4f64761fb3f33863d6311e2aa6f3205caab1.zip | |
The page template was rewritten
Signed-off-by: Valentin Popov <valentineus@gmail.com>
Diffstat (limited to '_layouts/default.html')
| -rw-r--r-- | _layouts/default.html | 23 | 
1 files changed, 4 insertions, 19 deletions
| diff --git a/_layouts/default.html b/_layouts/default.html index 67ce6c9..aedca0a 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -1,30 +1,15 @@  <!DOCTYPE html> -<html lang="en"> +<html lang="ru">  {% include head.html %}  <body> -    <nav class="nav"> -        <div class="nav-container"> -            <a href="{{ site.baseurl }}/"> -                <h2 class="nav-title">{{ site.title }}</h2> -            </a> -            <ul> -                <li><a href="{{ '/about' | prepend: site.baseurl }}">About</a></li> -                <li><a href="{{ site.baseurl }}/">Posts</a></li> -            </ul> -        </div> -    </nav> +    {% include sidebar.html %} -    <main> +    <div class="content container">          {{ content }} -    </main> +    </div> -    <footer> -        <span> -            © <time datetime="{{ site.time }}">{{ site.time | date: '%Y' }}</time> {{ site.author.name }}. Made with Jekyll using the <a href="https://github.com/chesterhow/tale/">Tale</a> theme. -        </span> -    </footer>  </body>  </html> | 
