diff options
| author | Valentin Popov <valentineus@gmail.com> | 2018-04-03 15:30:57 +0300 | 
|---|---|---|
| committer | Valentin Popov <valentineus@gmail.com> | 2018-04-03 15:30:57 +0300 | 
| commit | 6a8b81baa1f6d210e62cc09d45b353debb838ff2 (patch) | |
| tree | 16fc0d302b8319dcdd29ec24368fbcdbf591a2ef /_includes/head.html | |
| parent | f32aed3141c55211c89d2aef7049c3d1e3add7de (diff) | |
| download | popov.link-6a8b81baa1f6d210e62cc09d45b353debb838ff2.tar.xz popov.link-6a8b81baa1f6d210e62cc09d45b353debb838ff2.zip | |
Improved the header
Signed-off-by: Valentin Popov <valentineus@gmail.com>
Diffstat (limited to '_includes/head.html')
| -rw-r--r-- | _includes/head.html | 11 | 
1 files changed, 7 insertions, 4 deletions
| diff --git a/_includes/head.html b/_includes/head.html index c668069..d43c770 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 == "Home" %} +        {% if page.title == "index" %}              {{ site.title }}          {% else %}              {{ page.title }} · {{ site.title }} @@ -15,10 +15,13 @@      </title>      <!-- Font Awesome --> -    <link rel="stylesheet" href="//use.fontawesome.com/releases/v5.0.9/css/all.css" /> +    <link rel="stylesheet" href="//use.fontawesome.com/releases/v5.0.9/css/fontawesome.css" /> +    <link rel="stylesheet" href="//use.fontawesome.com/releases/v5.0.9/css/brands.css" /> +    <link rel="stylesheet" href="//use.fontawesome.com/releases/v5.0.9/css/solid.css" />      <!-- Google Fonts --> -    <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Abril+Fatface|PT+Sans" /> +    <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Abril+Fatface" /> +    <link rel="stylesheet" href="//fonts.googleapis.com/css?family=PT+Sans" />      <!-- CSS -->      <link rel="stylesheet" href="{{ "/assets/css/poole.css" | relative_url }}" /> @@ -31,5 +34,5 @@      <link rel="icon" type="image/png" sizes="32x32" href="{{ "/assets/favicon-32x32.png" | relative_url }}" />      <!-- RSS --> -    <link rel="alternate" type="application/atom+xml" title="RSS" href="{{ "/atom.xml" | relative_url }}" /> +    <link rel="alternate" type="application/atom+xml" title="RSS" href="{{ site.rss | relative_url }}" />  </head> | 
