update header to try to fix bug; related to #33
This commit is contained in:
parent
9197b79d9d
commit
57539e35e8
@ -13,45 +13,68 @@
|
|||||||
|
|
||||||
<link rel="alternate" type="application/rss+xml" title="{{ site.title }} - {{ site.description }}" href="{{ site.baseurl }}/feed.xml" />
|
<link rel="alternate" type="application/rss+xml" title="{{ site.title }} - {{ site.description }}" href="{{ site.baseurl }}/feed.xml" />
|
||||||
|
|
||||||
<!-- TODO hardcode the required JS because on 2016-02-01 GitHub pages migrated to jekyll 3 and broke this template -->
|
<!-- everything has to be repeated twice because on 2016-02-01 GitHub pages migrated to jekyll 3; see bug https://github.com/jekyll/jekyll/issues/4439 -->
|
||||||
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" />
|
|
||||||
<link rel="stylesheet" href="/css/bootstrap.min.css" />
|
|
||||||
<link rel="stylesheet" href="/css/main.css" />
|
|
||||||
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic" />
|
|
||||||
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" />
|
|
||||||
<link rel="stylesheet" href="/css/index.css" />
|
|
||||||
<!-- end TODO -->
|
|
||||||
|
|
||||||
|
{% if page.common-ext-css %}
|
||||||
|
{% for css in page.common-ext-css %}
|
||||||
|
<link rel="stylesheet" href="{{ css }}" />
|
||||||
|
{% endfor %}
|
||||||
|
{% endif %}
|
||||||
{% if layout.common-ext-css %}
|
{% if layout.common-ext-css %}
|
||||||
{% for css in layout.common-ext-css %}
|
{% for css in layout.common-ext-css %}
|
||||||
<link rel="stylesheet" href="{{ css }}" />
|
<link rel="stylesheet" href="{{ css }}" />
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
{% if page.common-css %}
|
||||||
|
{% for css in page.common-css %}
|
||||||
|
<link rel="stylesheet" href="{{ css | prepend: site.baseurl | replace: '//', '/' }}" />
|
||||||
|
{% endfor %}
|
||||||
|
{% endif %}
|
||||||
{% if layout.common-css %}
|
{% if layout.common-css %}
|
||||||
{% for css in layout.common-css %}
|
{% for css in layout.common-css %}
|
||||||
<link rel="stylesheet" href="{{ css | prepend: site.baseurl | replace: '//', '/' }}" />
|
<link rel="stylesheet" href="{{ css | prepend: site.baseurl | replace: '//', '/' }}" />
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
{% if page.common-googlefonts %}
|
||||||
|
{% for font in page.common-googlefonts %}
|
||||||
|
<link rel="stylesheet" href="//fonts.googleapis.com/css?family={{ font }}" />
|
||||||
|
{% endfor %}
|
||||||
|
{% endif %}
|
||||||
{% if layout.common-googlefonts %}
|
{% if layout.common-googlefonts %}
|
||||||
{% for font in layout.common-googlefonts %}
|
{% for font in layout.common-googlefonts %}
|
||||||
<link rel="stylesheet" href="//fonts.googleapis.com/css?family={{ font }}" />
|
<link rel="stylesheet" href="//fonts.googleapis.com/css?family={{ font }}" />
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
{% if page.ext-css %}
|
||||||
|
{% for css in page.ext-css %}
|
||||||
|
<link rel="stylesheet" href="{{ css }}" />
|
||||||
|
{% endfor %}
|
||||||
|
{% endif %}
|
||||||
{% if layout.ext-css %}
|
{% if layout.ext-css %}
|
||||||
{% for css in layout.ext-css %}
|
{% for css in layout.ext-css %}
|
||||||
<link rel="stylesheet" href="{{ css }}" />
|
<link rel="stylesheet" href="{{ css }}" />
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
{% if page.css %}
|
||||||
|
{% for css in page.css %}
|
||||||
|
<link rel="stylesheet" href="{{ css | prepend: site.baseurl | replace: '//', '/' }}" />
|
||||||
|
{% endfor %}
|
||||||
|
{% endif %}
|
||||||
{% if layout.css %}
|
{% if layout.css %}
|
||||||
{% for css in layout.css %}
|
{% for css in layout.css %}
|
||||||
<link rel="stylesheet" href="{{ css | prepend: site.baseurl | replace: '//', '/' }}" />
|
<link rel="stylesheet" href="{{ css | prepend: site.baseurl | replace: '//', '/' }}" />
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
{% if page.googlefonts %}
|
||||||
|
{% for font in page.googlefonts %}
|
||||||
|
<link rel="stylesheet" href="//fonts.googleapis.com/css?family={{ font }}" />
|
||||||
|
{% endfor %}
|
||||||
|
{% endif %}
|
||||||
{% if layout.googlefonts %}
|
{% if layout.googlefonts %}
|
||||||
{% for font in layout.googlefonts %}
|
{% for font in layout.googlefonts %}
|
||||||
<link rel="stylesheet" href="//fonts.googleapis.com/css?family={{ font }}" />
|
<link rel="stylesheet" href="//fonts.googleapis.com/css?family={{ font }}" />
|
||||||
|
Loading…
Reference in New Issue
Block a user