|
9 | 9 | <metaname="description"content="{{ site.description }}">
|
10 | 10 |
|
11 | 11 | <linkrel="alternate"type="application/rss+xml"title="{{ site.title }} - {{ site.description }}"href="{{ site.baseurl }}/feed.xml"/>
|
12 |
| - |
13 |
| -<!-- 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 --> |
14 |
| - |
15 |
| - {% if page.common-ext-css %} |
16 |
| - {% for css in page.common-ext-css %} |
17 |
| -<linkrel="stylesheet"href="{{ css }}"/> |
18 |
| - {% endfor %} |
19 |
| - {% endif %} |
| 12 | + |
20 | 13 | {% if layout.common-ext-css %}
|
21 | 14 | {% for css in layout.common-ext-css %}
|
22 | 15 | <linkrel="stylesheet"href="{{ css }}"/>
|
23 | 16 | {% endfor %}
|
24 | 17 | {% endif %}
|
25 | 18 |
|
26 |
| - {% if page.common-css %} |
27 |
| - {% for css in page.common-css %} |
28 |
| -<linkrel="stylesheet"href="{{ css | prepend: site.baseurl | replace: '//', '/' }}"/> |
29 |
| - {% endfor %} |
30 |
| - {% endif %} |
31 | 19 | {% if layout.common-css %}
|
32 | 20 | {% for css in layout.common-css %}
|
33 | 21 | <linkrel="stylesheet"href="{{ css | prepend: site.baseurl | replace: '//', '/' }}"/>
|
34 | 22 | {% endfor %}
|
35 | 23 | {% endif %}
|
36 | 24 |
|
37 |
| - {% if page.common-googlefonts %} |
38 |
| - {% for font in page.common-googlefonts %} |
39 |
| -<linkrel="stylesheet"href="//fonts.googleapis.com/css?family={{ font }}"/> |
40 |
| - {% endfor %} |
41 |
| - {% endif %} |
42 | 25 | {% if layout.common-googlefonts %}
|
43 | 26 | {% for font in layout.common-googlefonts %}
|
44 | 27 | <linkrel="stylesheet"href="//fonts.googleapis.com/css?family={{ font }}"/>
|
|
50 | 33 | <linkrel="stylesheet"href="{{ css }}"/>
|
51 | 34 | {% endfor %}
|
52 | 35 | {% endif %}
|
53 |
| - {% if layout.ext-css %} |
54 |
| - {% for css in layout.ext-css %} |
55 |
| -<linkrel="stylesheet"href="{{ css }}"/> |
56 |
| - {% endfor %} |
57 |
| - {% endif %} |
58 | 36 |
|
59 | 37 | {% if page.css %}
|
60 | 38 | {% for css in page.css %}
|
61 | 39 | <linkrel="stylesheet"href="{{ css | prepend: site.baseurl | replace: '//', '/' }}"/>
|
62 | 40 | {% endfor %}
|
63 | 41 | {% endif %}
|
64 |
| - {% if layout.css %} |
65 |
| - {% for css in layout.css %} |
66 |
| -<linkrel="stylesheet"href="{{ css | prepend: site.baseurl | replace: '//', '/' }}"/> |
67 |
| - {% endfor %} |
68 |
| - {% endif %} |
69 |
| - |
| 42 | + |
70 | 43 | {% if page.googlefonts %}
|
71 | 44 | {% for font in page.googlefonts %}
|
72 | 45 | <linkrel="stylesheet"href="//fonts.googleapis.com/css?family={{ font }}"/>
|
73 | 46 | {% endfor %}
|
74 | 47 | {% endif %}
|
75 |
| - {% if layout.googlefonts %} |
76 |
| - {% for font in layout.googlefonts %} |
77 |
| -<linkrel="stylesheet"href="//fonts.googleapis.com/css?family={{ font }}"/> |
78 |
| - {% endfor %} |
79 |
| - {% endif %} |
80 | 48 |
|
81 | 49 | <!-- Facebook OpenGraph tags -->
|
82 | 50 | {% if page.meta-title %}
|
|