futuro 0.7.8 → 0.7.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f6a4b96553b4527d52123e0d6a91a00611c805065c7c44af2c2fc8ab6dbb4961
4
- data.tar.gz: 14b5a3c6968d5847faf7eb1e046132692a90f79da3ce86675ed8b38a5d8a12d7
3
+ metadata.gz: 410ef74e5a33d26ad64ad9e1cebc8855e892c5fbcb103c818a86846b67cc433f
4
+ data.tar.gz: 7b958de1aaebc86f7f42d2303f47064795a115d16c0f3dae05e908af07997de1
5
5
  SHA512:
6
- metadata.gz: b09f8c539634241f1446856e7ae4dc0d231e75595b62b310466a572d0d5aedc1dacabebf97866b4b7e3caf1366a884fa26346753744a3a83a176203b71eaf90b
7
- data.tar.gz: ba33728e2dd51ea0ee01f8300abf37586c04c253c38f6c6c7529b6852df7df10152ec857a20e8bd949c62bb222661bec1bdd0ab176a4f3f89c129b3233a27a63
6
+ metadata.gz: f850ff91fd828d6292dbace7588d0067405905ff6a08d5be7c86535843bda4284e24387cde2f522a25bde9fb1a9a66110366aa0bd50e925278fbc962454c49ca
7
+ data.tar.gz: 961cfe2a55ee316282bcbd48d9ed7b5fbd900253a938148252b52e7ca3b41ca076a50010685b1a65eae1df84fda5798be5080cd4f38b3d941ff1f379a8d01a93
@@ -66,6 +66,12 @@
66
66
  {% assign PageIsPage = false %}
67
67
  {%- endif -%}
68
68
 
69
+ {%- if page.type == 'empty' -%}
70
+ {% assign PageIsEmpty = true %}
71
+ {%- else -%}
72
+ {% assign PageIsEmpty = false %}
73
+ {%- endif -%}
74
+
69
75
  {%- unless SiteIsBook -%}
70
76
  {% assign IconPath = BookPath | append : ChapterPath %}
71
77
  {%- else -%}
@@ -9,6 +9,7 @@
9
9
 
10
10
  {% assign SiteUtil = SitePage | append : 'util/' %}
11
11
  {% assign SiteContent = SitePage | append : 'content/' %}
12
+ {% assign PageBlock = SitePage | append : 'block/' %}
12
13
 
13
14
  {% assign ContentLoop = SiteContent | append : 'loop/' %}
14
15
  {% assign LoopArtwork = ContentLoop | append : 'artwork/' %}
@@ -28,12 +29,24 @@
28
29
  {% assign LayoutTitle = page.title | replace : ' ','-' | prepend : ' title-' | downcase %}
29
30
  {% assign LayoutTopic = page.topic | replace : ' ','-' | downcase %}
30
31
 
32
+ {%- if site.setup.respond -%}
33
+ {% assign SiteIsResponsive = true %}
34
+ {%- else -%}
35
+ {% assign SiteIsResponsive = false %}
36
+ {%- endif -%}
37
+
31
38
  {%- if site.setup.style == 'docs' -%}
32
39
  {% assign SiteIsDoc = true %}
33
40
  {%- else -%}
34
41
  {% assign SiteIsDoc = false %}
35
42
  {%- endif -%}
36
43
 
44
+ {%- if site.setup.install == 'theme' -%}
45
+ {% assign SiteIsTheme = true %}
46
+ {%- else -%}
47
+ {% assign SiteIsTheme = false %}
48
+ {%- endif -%}
49
+
37
50
  {%- if site.setup.install == 'library' -%}
38
51
  {% assign SiteIsLibrary = true %}
39
52
  {%- else -%}
@@ -1,16 +1,24 @@
1
1
 
2
2
  {%- include html/assign/page.liquid -%}
3
3
 
4
- {% unless PageIsBook or PageIsTopic %}
4
+ {%- if PageIsEmpty -%}
5
5
 
6
- {% if PageIsHome %}
6
+ {% include {{ SitePage | append : 'layout/empty.liquid' }} %}
7
7
 
8
- {% include html/page/layout/home.liquid %}
8
+ {%- else -%}
9
9
 
10
- {%- else -%}
10
+ {% unless PageIsBook or PageIsTopic %}
11
11
 
12
- {% include html/page/layout/page.liquid %}
12
+ {% if PageIsHome %}
13
13
 
14
- {% endif %}
14
+ {% include {{ SitePage | append : 'layout/home.liquid' }} %}
15
15
 
16
- {% endunless %}
16
+ {%- else -%}
17
+
18
+ {% include {{ SitePage | append : 'layout/page.liquid' }} %}
19
+
20
+ {% endif %}
21
+
22
+ {% endunless %}
23
+
24
+ {%- endif -%}
@@ -1,7 +1,7 @@
1
1
 
2
2
  {% assign IncludeTitle = include.title | downcase %}
3
3
 
4
- <div class="area {{ IncludeTitle | prepend : 'overlay-' }} {% if SiteIsLegacy %}legacy{% endif %}" {% if include.init %} style="display:{{ site.setup.display }};" {% endif %}>
4
+ <div class="area {{ IncludeTitle | prepend : 'overlay-' }} {% if SiteIsLegacy %}legacy{% endif %}" {% if include.state %} style="display:{{ site.setup.display }};" {% endif %}>
5
5
 
6
6
  {%- unless include.exit == "false" -%}
7
7
 
@@ -1,7 +1,7 @@
1
1
 
2
2
  {% if PageIsChapter %}
3
3
 
4
- <div class="area {{ PageType }} {{ PageBook | prepend : 'book-' }} {{ PageChapter | prepend : 'chapter-' }}
4
+ <div class="area {{ PageBook | prepend : 'book-' }} {{ PageType }} {{ PageChapter | prepend : 'chapter-' }}
5
5
  {% if site.setup.style %}{{ SiteStyle }}{% endif %}">
6
6
 
7
7
  {%- unless SiteIsDoc -%}
@@ -10,11 +10,11 @@
10
10
 
11
11
  {%- endunless -%}
12
12
 
13
- {% else %}
13
+ {% else %}
14
14
 
15
- {%- include html/page/subtitle.liquid -%}
15
+ {%- include {{ SitePage | append : 'subtitle.liquid' }} -%}
16
16
 
17
- <div class="area {{ PageType }} {{ PageTitle | prepend : 'title-' }}
17
+ <div class="area {{ PageTitle | prepend : 'title-' }} {{ PageType }}
18
18
  {% if site.setup.style %}{{ SiteStyle }}{% endif %}
19
19
  {% unless NoSubtitle %}has-subtitle{% endunless %}
20
20
  {% if page.row %} has-row {% endif %}
@@ -28,7 +28,7 @@
28
28
 
29
29
  {%- include {{ SiteContent | append : 'more.liquid' }} -%}
30
30
 
31
- {% include html/page/util.liquid %}
31
+ {% include {{ SitePage | append : 'util.liquid' }} %}
32
32
 
33
33
  {%- if page.break -%}
34
34
 
@@ -1,6 +1,5 @@
1
1
 
2
- <div class="wrap
3
- {{ PageType }}
2
+ <div class="wrap {{ PageType }}
4
3
  {% if site.setup.style %}{{ SiteStyle }}{% endif %}
5
4
  {% if page.collection %}{{ PageBook | prepend : 'book-' }}{% endif %}
6
5
  {% if page.chapter %}{{ PageChapter | prepend : 'chapter-' }}{% endif %}
@@ -9,4 +8,4 @@
9
8
 
10
9
  <div class="block stop" id="{{ ScrollID }}"></div>
11
10
 
12
- {% include html/page/title.liquid %}
11
+ {% include {{ SitePage | append : 'title.liquid' }} %}
@@ -1,7 +1,7 @@
1
1
 
2
- {%- include html/page/header.liquid -%}
2
+ {%- include {{ SitePage | append : 'header.liquid' }} -%}
3
3
 
4
- {%- include html/page/content.liquid -%}
4
+ {%- include {{ SitePage | append : 'content.liquid' }} -%}
5
5
 
6
6
  </div>
7
7
 
@@ -13,17 +13,17 @@
13
13
 
14
14
  {%- endif -%}
15
15
 
16
- {%- include html/page/footnote.liquid -%}
16
+ {%- include {{ SitePage | append : 'footnote.liquid' }} -%}
17
17
 
18
18
  {%- if PageIsChapter -%}
19
19
 
20
- {%- include html/page/util.liquid -%}
20
+ {%- include {{ SitePage | append : 'util.liquid' }} -%}
21
21
 
22
22
  {%- else -%}
23
23
 
24
24
  {%- unless SiteIsDoc -%}
25
25
 
26
- {%- include html/page/info.liquid -%}
26
+ {%- include {{ SitePage | append : 'info.liquid' }} -%}
27
27
 
28
28
  {%- endunless -%}
29
29
 
@@ -1,6 +1,9 @@
1
1
 
2
2
  {% if page.subtitle %}
3
3
 
4
- <h1 class="subtitle {{ PageType }}{% if page.wide %} wide{% endif %}">{{ page.subtitle }}</h1>
4
+ <h1 class="subtitle {{ PageType }}
5
+ {% if page.wide %}wide{% endif %}">
6
+ {{ page.subtitle }}
7
+ </h1>
5
8
 
6
9
  {% endif %}
@@ -1 +1 @@
1
- <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0" y="0" width="300" height="104" viewBox="0 0 300 104" xml:space="preserve" enable-background="new 0 0 300 104"><rect x="1.5" y="79.5" width="28" height="23"/><path d="M297,81v20H3V81H297 M300,78H0v26h300V78L300,78z"/><path d="M45.8,9h8.9v24.3h10.7V41H45.8V9z M102.6,25.3c0,4.6-1.7,8.8-4.8,12c-3.2,3.2-7.1,4.6-12.5,4.6s-9.5-1.4-12.7-4.5 c-3.3-3.1-5.1-7.5-5.1-12.2c0-4.8,1.9-9.5,5-12.5s7.4-4.6,12.4-4.6C95.3,8.1,102.6,15.3,102.6,25.3z M76.8,24.8 c0,5.7,3.4,9.5,8.4,9.5s8.4-3.7,8.4-9.2s-3.5-9.3-8.5-9.3C80.2,15.8,76.8,19.5,76.8,24.8z M113.7,9h10.9l11.3,32h-9.5l-1.7-5.6 h-11.4l-1.7,5.6h-9.3L113.7,9z M122.8,28.9l-3.7-12.2l-3.7,12.2H122.8z M139.6,9h13.1c9.3,0,15.5,6.3,15.5,15.8 c0,9.9-6,16.2-15.7,16.2h-12.9L139.6,9L139.6,9z M151.8,33.7c4.6,0,7.2-3.1,7.2-8.4c0-3.6-0.7-5.7-2.4-7.2c-1.2-1.2-2.8-1.7-4.8-1.7 h-3.3v17.4L151.8,33.7L151.8,33.7z M172.2,9h8.9v32h-8.9V9z M194.3,9l13.3,18.6V9h8.9v32h-8.6l-13.3-18.8V41h-8.9V9H194.3z M254.2,26.4c0,9.3-6.5,15.4-16.6,15.4c-4.9,0-8.6-1.3-11.9-4.5c-3.4-3.2-5-7.1-5-11.9s1.8-9.4,4.8-12.6C228.6,9.6,232.7,8,238,8 c6.5,0,11.2,2.5,14.2,7.5l-7.7,3.8c-2.3-2.9-3.7-3.7-6.7-3.7c-2.4,0-3.9,0.7-5.4,2.2c-1.8,1.9-2.7,4.4-2.7,7.3 c0,5.9,3.2,9.5,8.3,9.5c3.9,0,6.6-2,7.2-5.4h-8v-7h16.9L254.2,26.4L254.2,26.4z"/></svg>
1
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0" y="0" viewBox="0 0 300 104" xml:space="preserve" enable-background="new 0 0 300 104"><rect x="1.5" y="79.5" width="28" height="23"/><path d="M297,81v20H3V81H297 M300,78H0v26h300V78L300,78z"/><path d="M45.8,9h8.9v24.3h10.7V41H45.8V9z M102.6,25.3c0,4.6-1.7,8.8-4.8,12c-3.2,3.2-7.1,4.6-12.5,4.6s-9.5-1.4-12.7-4.5 c-3.3-3.1-5.1-7.5-5.1-12.2c0-4.8,1.9-9.5,5-12.5s7.4-4.6,12.4-4.6C95.3,8.1,102.6,15.3,102.6,25.3z M76.8,24.8 c0,5.7,3.4,9.5,8.4,9.5s8.4-3.7,8.4-9.2s-3.5-9.3-8.5-9.3C80.2,15.8,76.8,19.5,76.8,24.8z M113.7,9h10.9l11.3,32h-9.5l-1.7-5.6 h-11.4l-1.7,5.6h-9.3L113.7,9z M122.8,28.9l-3.7-12.2l-3.7,12.2H122.8z M139.6,9h13.1c9.3,0,15.5,6.3,15.5,15.8 c0,9.9-6,16.2-15.7,16.2h-12.9L139.6,9L139.6,9z M151.8,33.7c4.6,0,7.2-3.1,7.2-8.4c0-3.6-0.7-5.7-2.4-7.2c-1.2-1.2-2.8-1.7-4.8-1.7 h-3.3v17.4L151.8,33.7L151.8,33.7z M172.2,9h8.9v32h-8.9V9z M194.3,9l13.3,18.6V9h8.9v32h-8.6l-13.3-18.8V41h-8.9V9H194.3z M254.2,26.4c0,9.3-6.5,15.4-16.6,15.4c-4.9,0-8.6-1.3-11.9-4.5c-3.4-3.2-5-7.1-5-11.9s1.8-9.4,4.8-12.6C228.6,9.6,232.7,8,238,8 c6.5,0,11.2,2.5,14.2,7.5l-7.7,3.8c-2.3-2.9-3.7-3.7-6.7-3.7c-2.4,0-3.9,0.7-5.4,2.2c-1.8,1.9-2.7,4.4-2.7,7.3 c0,5.9,3.2,9.5,8.3,9.5c3.9,0,6.6-2,7.2-5.4h-8v-7h16.9L254.2,26.4L254.2,26.4z"/></svg>
@@ -1 +1 @@
1
- <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0" y="0" width="300" height="104" viewBox="0 0 300 104" xml:space="preserve" enable-background="new 0 0 300 104"><path d="M1.5,79.5h125v23H1.5V79.5z"/><path d="M297,81v20H3V81H297 M300,78H0v26h300V78L300,78z"/><path d="M82.3,38.3V4h3.6v34.3H82.3z M101.2,38.9c-1.2,0-2.5-0.2-3.8-0.7c-1.3-0.4-2.4-1-3.3-1.8c-1.2-0.9-2.1-2.1-2.8-3.6 c-0.7-1.4-1-3.1-1-4.8c0-1.5,0.3-3,0.9-4.3c0.5-1.3,1.3-2.4,2.3-3.4s2.1-1.6,3.5-2.3c1.3-0.5,2.8-0.9,4.4-0.9c2.3,0,4.4,0.7,6.3,1.9 c0.9,0.6,1.6,1.2,2.3,2c0.7,0.8,1.1,1.4,1.4,2.2s0.7,1.5,0.8,2.4c0.2,0.8,0.2,1.7,0.2,2.4c0,2.3-0.5,4.4-1.8,6.2 c-1.1,1.8-2.5,3-4.3,3.7C104.4,38.6,102.8,38.9,101.2,38.9z M101.2,35.8c1.2,0,2.3-0.2,3.2-0.7c0.9-0.4,1.7-1,2.2-1.8 c0.6-0.8,1.1-1.4,1.4-2.3c0.3-0.9,0.4-1.8,0.4-2.8c0-1.3-0.2-2.5-0.7-3.4c-0.4-0.9-1-1.6-1.8-2.3c-0.7-0.7-1.4-1.1-2.3-1.4 s-1.7-0.5-2.4-0.5c-1.5,0-2.9,0.4-4.2,1.3c-1.2,0.9-2.1,1.9-2.5,3.1c-0.4,1.1-0.7,2.2-0.7,3.3c0,1.2,0.2,2.3,0.7,3.2s1,1.7,1.7,2.3 c0.7,0.7,1.4,1.1,2.2,1.4C99.5,35.5,100.2,35.8,101.2,35.8z M125.2,39.1c-1.4,0-2.9-0.2-4.1-0.8s-2.3-1.2-3.2-2.2 c-0.9-1-1.5-2.1-2.1-3.4c-0.4-1.3-0.8-2.8-0.8-4.3c0-2.4,0.6-4.6,1.7-6.4c1.1-1.8,2.4-3,4-3.7c1.5-0.7,3.2-1,4.7-1 c1.6,0,3.1,0.3,4.4,1.1c1.2,0.8,2.2,1.8,2.8,3.1h0.2c-0.2-0.7-0.3-1.2-0.3-1.9v-1.3h3.5v20.1h-3.5V37c0-0.3,0-0.5,0.1-0.9 c0-0.3,0.1-0.5,0.2-0.9h-0.1C131,37.7,128.5,39.1,125.2,39.1z M125.5,35.9c2.1,0,3.8-0.7,5.1-2.1c1.2-1.4,1.9-3.3,1.9-5.6 c0-1.5-0.3-3-1-4.3c-0.7-1.2-1.5-2.2-2.8-2.6c-1.1-0.6-2.2-0.8-3.2-0.8c-2,0-3.6,0.7-4.8,2.1s-1.8,3.2-1.8,5.5s0.6,4.2,1.8,5.6 C121.9,35.2,123.5,35.9,125.5,35.9z M149.5,38.9c-1.5,0-2.9-0.2-4.1-0.8s-2.3-1.2-3.2-2.2s-1.5-2-2-3.3c-0.4-1.3-0.8-2.8-0.8-4.3 c0-2.4,0.6-4.6,1.7-6.4c1.1-1.8,2.4-3,4-3.7c1.5-0.7,3.1-1,4.6-1c3.3,0,5.7,1.3,7.3,4.1h0.2c-0.1-1.6-0.2-3.3-0.2-4.8 s-0.1-2.9-0.1-4.2V4h3.6v34.3h-3.6v-1.4c0-0.5,0.1-1.1,0.3-1.8H157c-0.9,1.3-2,2.3-3.2,3S151.2,38.9,149.5,38.9z M149.8,35.9 c1.2,0,2.3-0.2,3.2-0.8c0.9-0.4,1.6-1.1,2.2-1.9s1-1.5,1.2-2.4s0.4-1.9,0.4-3c0-1.2-0.2-2.2-0.7-3.2c-0.4-0.9-1-1.6-1.6-2.3 c-0.7-0.7-1.3-1.1-2.1-1.4c-0.8-0.3-1.7-0.4-2.5-0.4c-2,0-3.6,0.7-4.8,2.1c-1.2,1.4-1.8,3.2-1.8,5.5c0,1.1,0.1,2.2,0.4,3.1 c0.3,0.9,0.8,1.8,1.3,2.4c0.5,0.7,1.3,1.2,2.1,1.6C148,35.6,148.8,35.9,149.8,35.9z M168.1,13.2c-0.7,0-1.2-0.2-1.6-0.8 c-0.4-0.4-0.8-1.1-0.8-1.8s0.2-1.2,0.8-1.7c0.4-0.4,1-0.8,1.6-0.8s1.2,0.2,1.8,0.8c0.4,0.4,0.8,1.1,0.8,1.7c0,0.7-0.2,1.2-0.8,1.8 S168.8,13.2,168.1,13.2z M166.3,38.3V18h3.6v20.1h-3.6V38.3z M175.7,38.3V18h3.6v1.2c0,0.4-0.1,1-0.3,1.6h0.2 c1.4-2.3,3.5-3.4,5.9-3.4c1.5,0,2.9,0.3,4.1,1c1.1,0.7,2,1.5,2.5,2.6c0.2,0.5,0.4,1.3,0.7,2.2c0.1,0.9,0.2,1.9,0.2,2.8v12.1h-3.5 V26.3c0-1.8-0.4-3.1-1.2-4.1s-2-1.4-3.5-1.4c-1.4,0-2.6,0.5-3.6,1.5s-1.4,2.3-1.4,4v11.9h-3.6L175.7,38.3L175.7,38.3z M207.4,48.8 c-2,0-3.7-0.3-5.3-1.1c-1.5-0.8-2.8-1.6-3.5-2.9c-0.4-0.7-0.7-1.3-0.9-1.9c-0.2-0.6-0.2-1.4-0.3-2.3h3.7c0.1,3.3,2.2,5,6.4,5 c4.4,0,6.6-2.2,6.6-6.7v-1.6c0-0.7,0.1-1.4,0.3-2.1l-0.1-0.1c-0.9,1.4-1.9,2.4-3,3.1c-1.1,0.7-2.5,1-4.2,1c-1.4,0-2.9-0.2-4.2-0.8 s-2.5-1.2-3.4-2.2s-1.5-2.1-2.1-3.4c-0.4-1.3-0.8-2.9-0.8-4.6c0-1.8,0.3-3.3,0.9-4.7c0.7-1.3,1.4-2.4,2.3-3.4c0.9-0.9,2-1.5,3.2-2 c1.2-0.4,2.4-0.7,3.8-0.7c1.5,0,3,0.3,4.1,0.9c1.1,0.5,2.2,1.6,3.2,3.1h0.2c-0.2-0.6-0.3-1.2-0.3-1.8v-1.3h3.6v21.2 c0,1.1-0.1,2.2-0.4,3.2s-0.7,1.9-1.2,2.6c-0.3,0.5-0.9,1.1-1.5,1.5s-1.4,0.9-2.3,1.1c-0.9,0.2-1.6,0.6-2.5,0.7 S208.1,48.8,207.4,48.8z M207.5,35.9c1.1,0,2.1-0.2,2.9-0.7c0.8-0.4,1.5-1.1,2.1-1.8s1-1.5,1.3-2.3s0.4-1.8,0.4-2.9 c0-1.3-0.2-2.5-0.6-3.4c-0.4-0.9-0.9-1.6-1.5-2.3c-0.7-0.7-1.3-1.1-2.1-1.4s-1.6-0.5-2.8-0.5c-1.1,0-2,0.2-2.9,0.7 c-0.8,0.4-1.5,1-2.1,1.8c-0.6,0.7-1,1.4-1.2,2.3s-0.4,1.9-0.4,3c0,2.4,0.5,4.3,1.8,5.7C203.6,35.2,205.3,35.9,207.5,35.9z"/></svg>
1
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0" y="0" viewBox="0 0 300 104" xml:space="preserve" enable-background="new 0 0 300 104"><path d="M1.5,79.5h125v23H1.5V79.5z"/><path d="M297,81v20H3V81H297 M300,78H0v26h300V78L300,78z"/><path d="M82.3,38.3V4h3.6v34.3H82.3z M101.2,38.9c-1.2,0-2.5-0.2-3.8-0.7c-1.3-0.4-2.4-1-3.3-1.8c-1.2-0.9-2.1-2.1-2.8-3.6 c-0.7-1.4-1-3.1-1-4.8c0-1.5,0.3-3,0.9-4.3c0.5-1.3,1.3-2.4,2.3-3.4s2.1-1.6,3.5-2.3c1.3-0.5,2.8-0.9,4.4-0.9c2.3,0,4.4,0.7,6.3,1.9 c0.9,0.6,1.6,1.2,2.3,2c0.7,0.8,1.1,1.4,1.4,2.2s0.7,1.5,0.8,2.4c0.2,0.8,0.2,1.7,0.2,2.4c0,2.3-0.5,4.4-1.8,6.2 c-1.1,1.8-2.5,3-4.3,3.7C104.4,38.6,102.8,38.9,101.2,38.9z M101.2,35.8c1.2,0,2.3-0.2,3.2-0.7c0.9-0.4,1.7-1,2.2-1.8 c0.6-0.8,1.1-1.4,1.4-2.3c0.3-0.9,0.4-1.8,0.4-2.8c0-1.3-0.2-2.5-0.7-3.4c-0.4-0.9-1-1.6-1.8-2.3c-0.7-0.7-1.4-1.1-2.3-1.4 s-1.7-0.5-2.4-0.5c-1.5,0-2.9,0.4-4.2,1.3c-1.2,0.9-2.1,1.9-2.5,3.1c-0.4,1.1-0.7,2.2-0.7,3.3c0,1.2,0.2,2.3,0.7,3.2s1,1.7,1.7,2.3 c0.7,0.7,1.4,1.1,2.2,1.4C99.5,35.5,100.2,35.8,101.2,35.8z M125.2,39.1c-1.4,0-2.9-0.2-4.1-0.8s-2.3-1.2-3.2-2.2 c-0.9-1-1.5-2.1-2.1-3.4c-0.4-1.3-0.8-2.8-0.8-4.3c0-2.4,0.6-4.6,1.7-6.4c1.1-1.8,2.4-3,4-3.7c1.5-0.7,3.2-1,4.7-1 c1.6,0,3.1,0.3,4.4,1.1c1.2,0.8,2.2,1.8,2.8,3.1h0.2c-0.2-0.7-0.3-1.2-0.3-1.9v-1.3h3.5v20.1h-3.5V37c0-0.3,0-0.5,0.1-0.9 c0-0.3,0.1-0.5,0.2-0.9h-0.1C131,37.7,128.5,39.1,125.2,39.1z M125.5,35.9c2.1,0,3.8-0.7,5.1-2.1c1.2-1.4,1.9-3.3,1.9-5.6 c0-1.5-0.3-3-1-4.3c-0.7-1.2-1.5-2.2-2.8-2.6c-1.1-0.6-2.2-0.8-3.2-0.8c-2,0-3.6,0.7-4.8,2.1s-1.8,3.2-1.8,5.5s0.6,4.2,1.8,5.6 C121.9,35.2,123.5,35.9,125.5,35.9z M149.5,38.9c-1.5,0-2.9-0.2-4.1-0.8s-2.3-1.2-3.2-2.2s-1.5-2-2-3.3c-0.4-1.3-0.8-2.8-0.8-4.3 c0-2.4,0.6-4.6,1.7-6.4c1.1-1.8,2.4-3,4-3.7c1.5-0.7,3.1-1,4.6-1c3.3,0,5.7,1.3,7.3,4.1h0.2c-0.1-1.6-0.2-3.3-0.2-4.8 s-0.1-2.9-0.1-4.2V4h3.6v34.3h-3.6v-1.4c0-0.5,0.1-1.1,0.3-1.8H157c-0.9,1.3-2,2.3-3.2,3S151.2,38.9,149.5,38.9z M149.8,35.9 c1.2,0,2.3-0.2,3.2-0.8c0.9-0.4,1.6-1.1,2.2-1.9s1-1.5,1.2-2.4s0.4-1.9,0.4-3c0-1.2-0.2-2.2-0.7-3.2c-0.4-0.9-1-1.6-1.6-2.3 c-0.7-0.7-1.3-1.1-2.1-1.4c-0.8-0.3-1.7-0.4-2.5-0.4c-2,0-3.6,0.7-4.8,2.1c-1.2,1.4-1.8,3.2-1.8,5.5c0,1.1,0.1,2.2,0.4,3.1 c0.3,0.9,0.8,1.8,1.3,2.4c0.5,0.7,1.3,1.2,2.1,1.6C148,35.6,148.8,35.9,149.8,35.9z M168.1,13.2c-0.7,0-1.2-0.2-1.6-0.8 c-0.4-0.4-0.8-1.1-0.8-1.8s0.2-1.2,0.8-1.7c0.4-0.4,1-0.8,1.6-0.8s1.2,0.2,1.8,0.8c0.4,0.4,0.8,1.1,0.8,1.7c0,0.7-0.2,1.2-0.8,1.8 S168.8,13.2,168.1,13.2z M166.3,38.3V18h3.6v20.1h-3.6V38.3z M175.7,38.3V18h3.6v1.2c0,0.4-0.1,1-0.3,1.6h0.2 c1.4-2.3,3.5-3.4,5.9-3.4c1.5,0,2.9,0.3,4.1,1c1.1,0.7,2,1.5,2.5,2.6c0.2,0.5,0.4,1.3,0.7,2.2c0.1,0.9,0.2,1.9,0.2,2.8v12.1h-3.5 V26.3c0-1.8-0.4-3.1-1.2-4.1s-2-1.4-3.5-1.4c-1.4,0-2.6,0.5-3.6,1.5s-1.4,2.3-1.4,4v11.9h-3.6L175.7,38.3L175.7,38.3z M207.4,48.8 c-2,0-3.7-0.3-5.3-1.1c-1.5-0.8-2.8-1.6-3.5-2.9c-0.4-0.7-0.7-1.3-0.9-1.9c-0.2-0.6-0.2-1.4-0.3-2.3h3.7c0.1,3.3,2.2,5,6.4,5 c4.4,0,6.6-2.2,6.6-6.7v-1.6c0-0.7,0.1-1.4,0.3-2.1l-0.1-0.1c-0.9,1.4-1.9,2.4-3,3.1c-1.1,0.7-2.5,1-4.2,1c-1.4,0-2.9-0.2-4.2-0.8 s-2.5-1.2-3.4-2.2s-1.5-2.1-2.1-3.4c-0.4-1.3-0.8-2.9-0.8-4.6c0-1.8,0.3-3.3,0.9-4.7c0.7-1.3,1.4-2.4,2.3-3.4c0.9-0.9,2-1.5,3.2-2 c1.2-0.4,2.4-0.7,3.8-0.7c1.5,0,3,0.3,4.1,0.9c1.1,0.5,2.2,1.6,3.2,3.1h0.2c-0.2-0.6-0.3-1.2-0.3-1.8v-1.3h3.6v21.2 c0,1.1-0.1,2.2-0.4,3.2s-0.7,1.9-1.2,2.6c-0.3,0.5-0.9,1.1-1.5,1.5s-1.4,0.9-2.3,1.1c-0.9,0.2-1.6,0.6-2.5,0.7 S208.1,48.8,207.4,48.8z M207.5,35.9c1.1,0,2.1-0.2,2.9-0.7c0.8-0.4,1.5-1.1,2.1-1.8s1-1.5,1.3-2.3s0.4-1.8,0.4-2.9 c0-1.3-0.2-2.5-0.6-3.4c-0.4-0.9-0.9-1.6-1.5-2.3c-0.7-0.7-1.3-1.1-2.1-1.4s-1.6-0.5-2.8-0.5c-1.1,0-2,0.2-2.9,0.7 c-0.8,0.4-1.5,1-2.1,1.8c-0.6,0.7-1,1.4-1.2,2.3s-0.4,1.9-0.4,3c0,2.4,0.5,4.3,1.8,5.7C203.6,35.2,205.3,35.9,207.5,35.9z"/></svg>
@@ -1 +1 @@
1
- <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0" y="0" width="300" height="104" viewBox="0 0 300 104" xml:space="preserve" enable-background="new 0 0 300 104"><rect x="1.5" y="79.5" width="270" height="23"/><path d="M297,81v20H3V81H297 M300,78H0v26h300V78L300,78z"/><path d="M75,0h4l-4.9,40.5H70L75,0z M94,15.5c1.8,0,3.4,0.3,4.8,0.9c1.5,0.7,2.8,1.4,3.8,2.5c1.1,1.1,2,2.3,2.5,3.8 c0.7,1.4,0.9,3.1,0.9,4.8c0,1.9-0.3,3.7-1.1,5.4c-0.7,1.7-1.7,3.2-2.9,4.4s-2.6,2.2-4.3,3s-3.4,1.1-5.2,1.1c-1.8,0-3.4-0.3-4.9-0.9 s-2.8-1.4-3.8-2.5c-1.1-1.1-2-2.3-2.5-3.9c-0.7-1.4-0.9-3.1-0.9-4.8c0-2,0.3-3.7,1.1-5.5c0.7-1.6,1.7-3.2,2.9-4.4 c1.2-1.2,2.6-2.2,4.3-3C90.4,15.8,92.1,15.5,94,15.5z M93.7,19.2c-1.3,0-2.5,0.2-3.5,0.8c-1.1,0.5-2,1.2-2.8,2.1 c-0.8,0.9-1.4,2-1.9,3.2c-0.4,1.2-0.7,2.6-0.7,4.1c0,2.5,0.7,4.6,2.1,6c1.4,1.5,3.3,2.3,5.6,2.3c1.3,0,2.5-0.2,3.6-0.8 c1.1-0.5,2.1-1.2,2.9-2.1s1.4-2,1.9-3.2c0.4-1.2,0.7-2.5,0.7-4.1c0-2.6-0.7-4.6-2.1-6.2C98.1,20,96.2,19.2,93.7,19.2z M128.5,37.5 c-2,2.6-4.7,4-8.2,4c-1.7,0-3.1-0.3-4.4-0.9c-1.3-0.6-2.5-1.3-3.4-2.4c-1-1-1.7-2.3-2.2-3.7s-0.8-3-0.8-4.7c0-2,0.3-3.8,1-5.5 s1.5-3.2,2.6-4.4s2.4-2.2,4-2.9c1.5-0.7,3.2-1.1,4.9-1.1c3.6,0,6.5,1.5,8.7,4.7l0.2-0.1c0-0.2-0.1-0.4-0.1-0.6s0-0.3,0-0.4 c0-0.1,0-0.3,0-0.4s0-0.3,0.1-0.5l0.2-1.8h4.1l-3.1,23.8H128l0.2-1.2c0-0.2,0.1-0.4,0.2-0.7c0.1-0.2,0.2-0.7,0.4-1.1L128.5,37.5 L128.5,37.5z M122.3,19.6c-1.2,0-2.3,0.2-3.4,0.8c-1,0.6-1.9,1.2-2.6,2.1c-0.8,0.9-1.3,2-1.8,3.2c-0.4,1.2-0.7,2.5-0.7,4.1 c0,2.4,0.7,4.4,2,5.9s3.1,2.3,5.2,2.3c1.2,0,2.4-0.2,3.4-0.7c1.1-0.4,2-1.1,2.6-2c0.8-0.9,1.3-1.9,1.8-3.1c0.4-1.2,0.7-2.5,0.7-4.1 c0-2.5-0.7-4.6-2-6C126.3,20.3,124.6,19.6,122.3,19.6z M156.7,37.5c-1.1,1.4-2.3,2.4-3.5,3c-1.2,0.5-2.8,0.9-4.5,0.9 c-1.6,0-3.1-0.3-4.5-0.9c-1.3-0.5-2.5-1.3-3.4-2.4c-1-1-1.6-2.3-2.2-3.7c-0.6-1.4-0.8-3.1-0.8-4.8c0-2,0.3-3.9,1-5.5 s1.5-3.2,2.6-4.4s2.4-2.2,4-3c1.5-0.7,3.2-1.1,5.1-1.1c1.9,0,3.4,0.3,4.7,1.1c1.3,0.8,2.5,2,3.6,3.6l0.2-0.1c0-0.9,0.1-1.6,0.1-2.3 s0.1-1.2,0.1-1.8c0.1-0.6,0.1-1.2,0.2-1.9c0.1-0.7,0.2-1.5,0.3-2.5L161.3,0h4.1l-5.1,40.5h-4.1l0.1-1.2c0-0.2,0.1-0.4,0.2-0.7 c0.1-0.2,0.2-0.5,0.4-1L156.7,37.5z M150.5,19.5c-1.2,0-2.3,0.2-3.3,0.8s-1.9,1.2-2.6,2.1c-0.8,0.9-1.3,2-1.8,3.2 c-0.4,1.2-0.7,2.5-0.7,4.1c0,2.5,0.7,4.5,2,6c1.3,1.4,3.1,2.2,5.3,2.2c1.2,0,2.4-0.2,3.4-0.8c1-0.4,1.9-1.2,2.6-2.1 c0.8-0.9,1.3-2,1.8-3.2s0.6-2.5,0.6-4.1c0-2.5-0.7-4.5-2-6S152.7,19.5,150.5,19.5z M170.3,16.7h4.1l-3,23.8h-4.1L170.3,16.7z M173.5,5.3c0.8,0,1.4,0.3,2,0.9s0.9,1.2,0.9,2s-0.3,1.4-0.9,2c-0.6,0.6-1.2,0.9-2,0.9s-1.4-0.3-2-0.9c-0.6-0.5-0.9-1.2-0.9-2 s0.3-1.4,0.9-2C172.1,5.5,172.8,5.3,173.5,5.3z M181.6,16.7h4.1l-0.2,1.6c0,0.3-0.1,0.6-0.2,0.9c-0.1,0.3-0.2,0.7-0.4,1.1l0.2,0.1 c1.2-1.5,2.4-2.5,3.6-3.2c1.2-0.7,2.6-1,4.3-1c2.3,0,4.1,0.7,5.4,1.9c1.3,1.2,2,3,2,5.2c0,0.9-0.1,1.9-0.2,2.8l-1.9,14.4h-4.1 l1.8-14.2c0-0.4,0.1-0.8,0.1-1.1s0-0.7,0-1.2c0-2.8-1.4-4.2-4.3-4.2c-1.9,0-3.5,0.5-4.8,1.8s-2.2,2.6-2.4,4.4l-1.8,14.5h-4.1 L181.6,16.7z M208.2,42.5c0.2,2.1,0.9,3.6,2,4.7s2.8,1.6,4.7,1.6c1.6,0,3.2-0.3,4.4-1s2.2-1.7,2.9-3c0.2-0.3,0.4-0.8,0.6-1.2 c0.1-0.4,0.3-1,0.4-1.5s0.2-1.2,0.3-2s0.2-1.7,0.3-2.8l-0.2-0.1c-1.1,1.3-2.2,2.3-3.4,2.9s-2.6,0.9-4.4,0.9c-1.7,0-3.2-0.3-4.5-0.9 c-1.3-0.5-2.5-1.3-3.5-2.3s-1.8-2.2-2.3-3.6c-0.6-1.4-0.8-3-0.8-4.7c0-1.9,0.3-3.6,1-5.3c0.7-1.6,1.5-3.1,2.6-4.3s2.5-2.2,4-2.9 s3.2-1.1,4.9-1.1c3.7,0,6.5,1.5,8.4,4.5l0.2-0.1c-0.1-0.3-0.2-0.7-0.2-1c0-0.1,0-0.2,0-0.3s0-0.3,0.1-0.6l0.2-1.6h4.1l-2.4,18.9 c-0.2,1.8-0.4,3.2-0.6,4.1c-0.1,0.9-0.3,1.8-0.4,2.5c-0.8,3.5-2.1,6.2-4,7.7c-1.9,1.7-4.5,2.4-7.9,2.4c-2.2,0-4.1-0.3-5.7-1.1 c-1.6-0.8-2.9-1.8-3.7-3.1c-0.6-0.8-0.9-1.5-1.1-2.4c-0.2-0.9-0.3-2-0.4-3.3h4.5L208.2,42.5L208.2,42.5z M218,19.2 c-1.2,0-2.3,0.2-3.4,0.8c-1.1,0.5-2,1.2-2.8,2.1c-0.8,0.9-1.3,2-1.8,3.2c-0.4,1.2-0.7,2.5-0.7,4.1c0,2.4,0.7,4.4,2,5.8 c1.3,1.4,3.1,2.2,5.3,2.2c2.6,0,4.7-0.9,6.2-2.6c1.4-1.8,2.2-4.2,2.2-7.3c0-2.9-0.7-4.9-2.1-6.3C221.6,19.9,220,19.2,218,19.2z"/></svg>
1
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0" y="0" viewBox="0 0 300 104" xml:space="preserve" enable-background="new 0 0 300 104"><rect x="1.5" y="79.5" width="270" height="23"/><path d="M297,81v20H3V81H297 M300,78H0v26h300V78L300,78z"/><path d="M75,0h4l-4.9,40.5H70L75,0z M94,15.5c1.8,0,3.4,0.3,4.8,0.9c1.5,0.7,2.8,1.4,3.8,2.5c1.1,1.1,2,2.3,2.5,3.8 c0.7,1.4,0.9,3.1,0.9,4.8c0,1.9-0.3,3.7-1.1,5.4c-0.7,1.7-1.7,3.2-2.9,4.4s-2.6,2.2-4.3,3s-3.4,1.1-5.2,1.1c-1.8,0-3.4-0.3-4.9-0.9 s-2.8-1.4-3.8-2.5c-1.1-1.1-2-2.3-2.5-3.9c-0.7-1.4-0.9-3.1-0.9-4.8c0-2,0.3-3.7,1.1-5.5c0.7-1.6,1.7-3.2,2.9-4.4 c1.2-1.2,2.6-2.2,4.3-3C90.4,15.8,92.1,15.5,94,15.5z M93.7,19.2c-1.3,0-2.5,0.2-3.5,0.8c-1.1,0.5-2,1.2-2.8,2.1 c-0.8,0.9-1.4,2-1.9,3.2c-0.4,1.2-0.7,2.6-0.7,4.1c0,2.5,0.7,4.6,2.1,6c1.4,1.5,3.3,2.3,5.6,2.3c1.3,0,2.5-0.2,3.6-0.8 c1.1-0.5,2.1-1.2,2.9-2.1s1.4-2,1.9-3.2c0.4-1.2,0.7-2.5,0.7-4.1c0-2.6-0.7-4.6-2.1-6.2C98.1,20,96.2,19.2,93.7,19.2z M128.5,37.5 c-2,2.6-4.7,4-8.2,4c-1.7,0-3.1-0.3-4.4-0.9c-1.3-0.6-2.5-1.3-3.4-2.4c-1-1-1.7-2.3-2.2-3.7s-0.8-3-0.8-4.7c0-2,0.3-3.8,1-5.5 s1.5-3.2,2.6-4.4s2.4-2.2,4-2.9c1.5-0.7,3.2-1.1,4.9-1.1c3.6,0,6.5,1.5,8.7,4.7l0.2-0.1c0-0.2-0.1-0.4-0.1-0.6s0-0.3,0-0.4 c0-0.1,0-0.3,0-0.4s0-0.3,0.1-0.5l0.2-1.8h4.1l-3.1,23.8H128l0.2-1.2c0-0.2,0.1-0.4,0.2-0.7c0.1-0.2,0.2-0.7,0.4-1.1L128.5,37.5 L128.5,37.5z M122.3,19.6c-1.2,0-2.3,0.2-3.4,0.8c-1,0.6-1.9,1.2-2.6,2.1c-0.8,0.9-1.3,2-1.8,3.2c-0.4,1.2-0.7,2.5-0.7,4.1 c0,2.4,0.7,4.4,2,5.9s3.1,2.3,5.2,2.3c1.2,0,2.4-0.2,3.4-0.7c1.1-0.4,2-1.1,2.6-2c0.8-0.9,1.3-1.9,1.8-3.1c0.4-1.2,0.7-2.5,0.7-4.1 c0-2.5-0.7-4.6-2-6C126.3,20.3,124.6,19.6,122.3,19.6z M156.7,37.5c-1.1,1.4-2.3,2.4-3.5,3c-1.2,0.5-2.8,0.9-4.5,0.9 c-1.6,0-3.1-0.3-4.5-0.9c-1.3-0.5-2.5-1.3-3.4-2.4c-1-1-1.6-2.3-2.2-3.7c-0.6-1.4-0.8-3.1-0.8-4.8c0-2,0.3-3.9,1-5.5 s1.5-3.2,2.6-4.4s2.4-2.2,4-3c1.5-0.7,3.2-1.1,5.1-1.1c1.9,0,3.4,0.3,4.7,1.1c1.3,0.8,2.5,2,3.6,3.6l0.2-0.1c0-0.9,0.1-1.6,0.1-2.3 s0.1-1.2,0.1-1.8c0.1-0.6,0.1-1.2,0.2-1.9c0.1-0.7,0.2-1.5,0.3-2.5L161.3,0h4.1l-5.1,40.5h-4.1l0.1-1.2c0-0.2,0.1-0.4,0.2-0.7 c0.1-0.2,0.2-0.5,0.4-1L156.7,37.5z M150.5,19.5c-1.2,0-2.3,0.2-3.3,0.8s-1.9,1.2-2.6,2.1c-0.8,0.9-1.3,2-1.8,3.2 c-0.4,1.2-0.7,2.5-0.7,4.1c0,2.5,0.7,4.5,2,6c1.3,1.4,3.1,2.2,5.3,2.2c1.2,0,2.4-0.2,3.4-0.8c1-0.4,1.9-1.2,2.6-2.1 c0.8-0.9,1.3-2,1.8-3.2s0.6-2.5,0.6-4.1c0-2.5-0.7-4.5-2-6S152.7,19.5,150.5,19.5z M170.3,16.7h4.1l-3,23.8h-4.1L170.3,16.7z M173.5,5.3c0.8,0,1.4,0.3,2,0.9s0.9,1.2,0.9,2s-0.3,1.4-0.9,2c-0.6,0.6-1.2,0.9-2,0.9s-1.4-0.3-2-0.9c-0.6-0.5-0.9-1.2-0.9-2 s0.3-1.4,0.9-2C172.1,5.5,172.8,5.3,173.5,5.3z M181.6,16.7h4.1l-0.2,1.6c0,0.3-0.1,0.6-0.2,0.9c-0.1,0.3-0.2,0.7-0.4,1.1l0.2,0.1 c1.2-1.5,2.4-2.5,3.6-3.2c1.2-0.7,2.6-1,4.3-1c2.3,0,4.1,0.7,5.4,1.9c1.3,1.2,2,3,2,5.2c0,0.9-0.1,1.9-0.2,2.8l-1.9,14.4h-4.1 l1.8-14.2c0-0.4,0.1-0.8,0.1-1.1s0-0.7,0-1.2c0-2.8-1.4-4.2-4.3-4.2c-1.9,0-3.5,0.5-4.8,1.8s-2.2,2.6-2.4,4.4l-1.8,14.5h-4.1 L181.6,16.7z M208.2,42.5c0.2,2.1,0.9,3.6,2,4.7s2.8,1.6,4.7,1.6c1.6,0,3.2-0.3,4.4-1s2.2-1.7,2.9-3c0.2-0.3,0.4-0.8,0.6-1.2 c0.1-0.4,0.3-1,0.4-1.5s0.2-1.2,0.3-2s0.2-1.7,0.3-2.8l-0.2-0.1c-1.1,1.3-2.2,2.3-3.4,2.9s-2.6,0.9-4.4,0.9c-1.7,0-3.2-0.3-4.5-0.9 c-1.3-0.5-2.5-1.3-3.5-2.3s-1.8-2.2-2.3-3.6c-0.6-1.4-0.8-3-0.8-4.7c0-1.9,0.3-3.6,1-5.3c0.7-1.6,1.5-3.1,2.6-4.3s2.5-2.2,4-2.9 s3.2-1.1,4.9-1.1c3.7,0,6.5,1.5,8.4,4.5l0.2-0.1c-0.1-0.3-0.2-0.7-0.2-1c0-0.1,0-0.2,0-0.3s0-0.3,0.1-0.6l0.2-1.6h4.1l-2.4,18.9 c-0.2,1.8-0.4,3.2-0.6,4.1c-0.1,0.9-0.3,1.8-0.4,2.5c-0.8,3.5-2.1,6.2-4,7.7c-1.9,1.7-4.5,2.4-7.9,2.4c-2.2,0-4.1-0.3-5.7-1.1 c-1.6-0.8-2.9-1.8-3.7-3.1c-0.6-0.8-0.9-1.5-1.1-2.4c-0.2-0.9-0.3-2-0.4-3.3h4.5L208.2,42.5L208.2,42.5z M218,19.2 c-1.2,0-2.3,0.2-3.4,0.8c-1.1,0.5-2,1.2-2.8,2.1c-0.8,0.9-1.3,2-1.8,3.2c-0.4,1.2-0.7,2.5-0.7,4.1c0,2.4,0.7,4.4,2,5.8 c1.3,1.4,3.1,2.2,5.3,2.2c2.6,0,4.7-0.9,6.2-2.6c1.4-1.8,2.2-4.2,2.2-7.3c0-2.9-0.7-4.9-2.1-6.3C221.6,19.9,220,19.2,218,19.2z"/></svg>
data/_layouts/single.html CHANGED
@@ -18,7 +18,11 @@ layout: mini
18
18
 
19
19
  {% include {{ SiteOverlay | append : 'wrap.liquid' }} title='load' exit='false' state='open' %}
20
20
 
21
- {% include {{ SiteOverlay | append : 'wrap.liquid' }} title='mobile' exit='false' %}
21
+ {%- unless SiteIsResponsive -%}
22
+
23
+ {% include {{ SiteOverlay | append : 'wrap.liquid' }} title='mobile' exit='false' %}
24
+
25
+ {%- endunless -%}
22
26
 
23
27
  {% if LayoutIsOverlay %}
24
28
 
@@ -32,27 +36,40 @@ layout: mini
32
36
 
33
37
  {% unless LayoutIsHome %}
34
38
 
35
- {% include {{ SiteOverlay | append : 'wrap.liquid' }} title='about' %}
39
+ {%- unless SiteIsTheme -%}
40
+
41
+ {% include {{ SiteOverlay | append : 'wrap.liquid' }} title='about' %}
42
+
43
+ {% include {{ SiteOverlay | append : 'wrap.liquid' }} title='browse' %}
36
44
 
37
- {% include {{ SiteOverlay | append : 'wrap.liquid' }} title='browse' %}
45
+ {% include {{ SiteOverlay | append : 'wrap.liquid' }} title='search' %}
38
46
 
39
- {% include {{ SiteOverlay | append : 'wrap.liquid' }} title='search' %}
47
+ {%- endunless -%}
40
48
 
41
49
  {% endunless %}
42
50
 
43
- <div class="site {% if LayoutIsHome %} full {% else %} single {% endif %}">
51
+ <div class="site {{ LayoutType }}
52
+ {% if LayoutIsHome %}full{% else %}single{% endif %}">
44
53
 
45
54
  {% include {{ Site | append : 'header.liquid' }} %}
46
55
 
47
56
  {% unless LayoutIsHome %}
48
57
 
49
- {% include {{ SitePage | append : 'topbar.liquid' }} %}
58
+ {%- unless SiteIsTheme -%}
59
+
60
+ {% include {{ SitePage | append : 'topbar.liquid' }} %}
61
+
62
+ {%- endunless -%}
50
63
 
51
64
  {% endunless %}
52
65
 
53
66
  {% include {{ SiteLayout | append : 'type.liquid' }} %}
54
67
 
55
- {% include {{ SitePage | append : 'clippies.liquid' }} %}
68
+ {%- unless SiteIsTheme -%}
69
+
70
+ {% include {{ SitePage | append : 'clippies.liquid' }} %}
71
+
72
+ {%- endunless -%}
56
73
 
57
74
  {% include {{ Site | append : 'footer.liquid' }} %}
58
75
 
data/_sass/_site.scss CHANGED
@@ -4,17 +4,21 @@
4
4
  position: relative;
5
5
  display: none;
6
6
  z-index: 1;
7
+ }
7
8
 
8
- &.full {
9
- @include zeros(absolute);
10
- height: 100%;
11
- }
9
+ .site.full {
10
+ @include zeros(absolute);
11
+ height: 100%;
12
+ }
12
13
 
13
- &.feed {
14
- @extend %SiteSetup;
15
- }
14
+ .site.feed {
15
+ @extend %SiteSetup;
16
+ }
17
+
18
+ .site.single {
19
+ @extend %SiteSetup;
20
+ }
16
21
 
17
- &.single {
18
- @extend %SiteSetup;
19
- }
22
+ .site.single.type-empty {
23
+ padding: 0;
20
24
  }
@@ -1,22 +1,22 @@
1
- //
2
- // %book {
3
- // font-family: "Helvetica Neue", sans-serif;
4
- // font-weight: normal;
5
- // }
6
- //
7
- // %book-italic {
8
- // font-family: "Helvetica Neue", sans-serif;
9
- // font-weight: normal;
10
- // font-style: italic;
11
- // }
12
- //
13
- // %bold {
14
- // font-family: "Helvetica Neue", sans-serif;
15
- // font-weight: bold;
16
- // }
17
- //
18
- // %bold-italic {
19
- // font-family: "Helvetica Neue", sans-serif;
20
- // font-style: italic;
21
- // font-weight: bold;
22
- // }
1
+
2
+ %book {
3
+ font-family: "Helvetica Neue", sans-serif;
4
+ font-weight: normal;
5
+ }
6
+
7
+ %book-italic {
8
+ font-family: "Helvetica Neue", sans-serif;
9
+ font-weight: normal;
10
+ font-style: italic;
11
+ }
12
+
13
+ %bold {
14
+ font-family: "Helvetica Neue", sans-serif;
15
+ font-weight: bold;
16
+ }
17
+
18
+ %bold-italic {
19
+ font-family: "Helvetica Neue", sans-serif;
20
+ font-style: italic;
21
+ font-weight: bold;
22
+ }
@@ -18,7 +18,7 @@
18
18
 
19
19
  .wrap.overlay-load {
20
20
  @extend %WrapOverlay;
21
- max-width: 320px;
21
+ max-width: 300px;
22
22
 
23
23
  svg {
24
24
  display: none;
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: futuro
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.8
4
+ version: 0.7.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul Heading
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-04-17 00:00:00.000000000 Z
11
+ date: 2020-04-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll