head.html 694 B

1234567891011121314151617
  1. <head>
  2. <meta charset="UTF-8">
  3. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  4. <title>
  5. {% if page.title == "Home" %}
  6. {{ site.title }} &middot; {{ site.tagline }}
  7. {% else %}
  8. {{ page.title }} &middot; {{ site.title }}
  9. {% endif %}
  10. </title>
  11. <link rel="stylesheet" href="{{ site.baseurl }}/styles.css">
  12. <link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ site.baseurl }}/public/apple-touch-icon-precomposed.png">
  13. <link rel="shortcut icon" href="{{ site.baseurl }}/public/favicon.ico">
  14. <link rel="alternate" type="application/atom+xml" title="{{ site.title }}" href="{{ site.baseurl }}/atom.xml">
  15. </head>