_includes/head.html in no-style-please-0.1.3 vs _includes/head.html in no-style-please-0.1.4
- old
+ new
@@ -1,17 +1,19 @@
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
- <title>{{ site.title }}</title>
+ <title>
+ {% if page.title %}
+ {{ page.title }}
+ {% else %}
+ {{ site.title }}
+ {% endif %}
+ </title>
- {% feed_meta %}
{% seo title=false %}
-
- {% if site.goat_counter and jekyll.environment == "production" %}
- {% include goat_counter.html %}
- {% endif %}
+ {% feed_meta %}
<link rel="shortcut icon" type="image/x-icon" href="{{ site.favicon }}" />
<link rel="stylesheet" href="{{ site.url }}/assets/css/main.css" />
</head>
\ No newline at end of file