head.html 1.1 KB

1234567891011121314151617181920212223242526
  1. {% if page.title %}
  2. {% capture title %}{{ page.title }} | {{ site.title }}{% endcapture %}
  3. {% else %}
  4. {% capture title %}{{ site.title }}{% endcapture %}
  5. {% endif %}
  6. <head>
  7. <title>{{ title }}</title>
  8. {% include google_analytics.html %}
  9. <meta charset="utf-8">
  10. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  11. <meta name="author" content="{{ site.user.name }}">
  12. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  13. <link rel="stylesheet" href="{{ 'assets/css/main.css' | relative_url }}" media="all">
  14. <link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.url }}">
  15. <link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}"
  16. href="{{ '/feed.xml' | relative_url }}" />
  17. <!-- favicon -->
  18. <link rel="shortcut icon" href="{{ site.favicon | relative_url }}" type="image/x-icon" />
  19. <link rel="icon" href="{{ site.favicon | relative_url }}" type="image/x-icon" />
  20. <!-- font -->
  21. <link href="https://fonts.googleapis.com/css?family=Titillium+Web:400,400i" rel="stylesheet">
  22. </head>