1
0

head.html 830 B

12345678910111213141516171819202122232425
  1. <head>
  2. <meta charset="UTF-8">
  3. <link href="http://gmpg.org/xfn/11" rel="profile">
  4. <!-- Enable responsiveness on mobile devices-->
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>
  7. {% if page.title == "Home" %}
  8. {{ site.title }} &middot; {{ site.tagline }}
  9. {% else %}
  10. {{ page.title }} &middot; {{ site.title }}
  11. {% endif %}
  12. </title>
  13. <!-- CSS -->
  14. <link rel="stylesheet" href="{{ site.baseurl }}/styles.css">
  15. <!-- Icons -->
  16. <link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ site.baseurl }}/public/apple-touch-icon-precomposed.png">
  17. <link rel="shortcut icon" href="{{ site.baseurl }}/public/favicon.ico">
  18. <!-- RSS -->
  19. <link rel="alternate" type="application/atom+xml" title="{{ site.title }}" href="{{ site.baseurl }}/atom.xml">
  20. </head>