diff options
| author | Valentin Popov <valentineus@gmail.com> | 2018-04-07 02:54:57 +0300 | 
|---|---|---|
| committer | Valentin Popov <valentineus@gmail.com> | 2018-04-07 02:54:57 +0300 | 
| commit | dfe3fab9f1d90fc78e0036af5b57a3d5d730c4a4 (patch) | |
| tree | fec90d258958dc90fa240ef2bde2a0bf8af2a7ed | |
| parent | 400933301b171cd08d4ea4d8ed84528f7d79be04 (diff) | |
| download | popov.link-dfe3fab9f1d90fc78e0036af5b57a3d5d730c4a4.tar.xz popov.link-dfe3fab9f1d90fc78e0036af5b57a3d5d730c4a4.zip | |
Connect icons and title
Signed-off-by: Valentin Popov <valentineus@gmail.com>
| -rw-r--r-- | _layouts/default.html | 13 | 
1 files changed, 9 insertions, 4 deletions
| diff --git a/_layouts/default.html b/_layouts/default.html index ff58a5d..b1ca412 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -8,12 +8,17 @@ layout: compress  {% include head.html %}  <body> -    {% include sidebar.html %} +    {% include header.html %} -    <div class="content container"> -        {{ content | normalize_whitespace }} -    </div> +    {% include icons.html %} +    <section class="main"> +        <div class="container"> +            <div class="content"> +                {{ content | normalize_whitespace }} +            </div> +        </div> +    </section>  </body>  </html> | 
