|
13 | 13 |
|
14 | 14 | <link rel="alternate" type="application/rss+xml" title="{{ site.title }} - {{ site.description }}" href="{{ site.baseurl }}/feed.xml" /> |
15 | 15 |
|
16 | | - {% if page.common-ext-css %} |
17 | | - {% for css in page.common-ext-css %} |
| 16 | + {% if layout.common-ext-css %} |
| 17 | + {% for css in layout.common-ext-css %} |
18 | 18 | <link rel="stylesheet" href="{{ css }}" /> |
19 | 19 | {% endfor %} |
20 | 20 | {% endif %} |
21 | 21 |
|
22 | | - {% if page.common-css %} |
23 | | - {% for css in page.common-css %} |
| 22 | + {% if layout.common-css %} |
| 23 | + {% for css in layout.common-css %} |
24 | 24 | <link rel="stylesheet" href="{{ css | prepend: site.baseurl | replace: '//', '/' }}" /> |
25 | 25 | {% endfor %} |
26 | 26 | {% endif %} |
27 | 27 |
|
28 | | - {% if page.common-googlefonts %} |
29 | | - {% for font in page.common-googlefonts %} |
| 28 | + {% if layout.common-googlefonts %} |
| 29 | + {% for font in layout.common-googlefonts %} |
30 | 30 | <link rel="stylesheet" href="//fonts.googleapis.com/css?family={{ font }}" /> |
31 | 31 | {% endfor %} |
32 | 32 | {% endif %} |
33 | 33 |
|
34 | | - {% if page.ext-css %} |
35 | | - {% for css in page.ext-css %} |
| 34 | + {% if layout.ext-css %} |
| 35 | + {% for css in layout.ext-css %} |
36 | 36 | <link rel="stylesheet" href="{{ css }}" /> |
37 | 37 | {% endfor %} |
38 | 38 | {% endif %} |
39 | 39 |
|
40 | | - {% if page.css %} |
41 | | - {% for css in page.css %} |
| 40 | + {% if layout.css %} |
| 41 | + {% for css in layout.css %} |
42 | 42 | <link rel="stylesheet" href="{{ css | prepend: site.baseurl | replace: '//', '/' }}" /> |
43 | 43 | {% endfor %} |
44 | 44 | {% endif %} |
45 | 45 |
|
46 | | - {% if page.googlefonts %} |
47 | | - {% for font in page.googlefonts %} |
| 46 | + {% if layout.googlefonts %} |
| 47 | + {% for font in layout.googlefonts %} |
48 | 48 | <link rel="stylesheet" href="//fonts.googleapis.com/css?family={{ font }}" /> |
49 | 49 | {% endfor %} |
50 | 50 | {% endif %} |
|
0 commit comments