jekyll-theme-hydejack 6.3.0 → 6.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +39 -27
  3. data/_includes/author.html +1 -3
  4. data/_includes/body.html +0 -1
  5. data/_includes/copyright-header.txt +1 -1
  6. data/_includes/footer.html +1 -1
  7. data/_includes/head.html +16 -18
  8. data/_includes/message.html +2 -0
  9. data/_includes/post.html +9 -15
  10. data/_includes/related.html +1 -2
  11. data/_includes/scripts.html +10 -15
  12. data/_includes/srcset-img.html +7 -7
  13. data/_includes/styles/inline.scss +6 -10
  14. data/_includes/styles/style.scss +6 -13
  15. data/_layouts/about.html +1 -2
  16. data/_layouts/blog.html +0 -1
  17. data/_layouts/compress.html +1 -1
  18. data/_layouts/list.html +6 -5
  19. data/_layouts/page.html +4 -3
  20. data/_sass/hydejack/_base-inline.scss +5 -1
  21. data/_sass/hydejack/_base.scss +5 -1
  22. data/_sass/hydejack/_content-inline.scss +0 -6
  23. data/_sass/hydejack/_menu-inline.scss +5 -1
  24. data/_sass/hydejack/_menu.scss +6 -1
  25. data/_sass/hydejack/_sidebar-inline.scss +6 -26
  26. data/_sass/hydejack/_sidebar.scss +11 -29
  27. data/_sass/hydejack/_social-inline.scss +1 -1
  28. data/_sass/pooleparty/_posts-inline.scss +10 -3
  29. data/_sass/pooleparty/_posts.scss +10 -3
  30. data/_sass/pooleparty/_table-inline.scss +130 -0
  31. data/_sass/pooleparty/_table.scss +121 -17
  32. data/_sass/pooleparty/_type-inline.scss +16 -2
  33. data/_sass/pooleparty/_type.scss +17 -4
  34. data/assets/icomoon/demo.html +32 -32
  35. data/assets/icomoon/fonts/icomoon.eot +0 -0
  36. data/assets/icomoon/fonts/icomoon.svg +2 -2
  37. data/assets/icomoon/fonts/icomoon.ttf +0 -0
  38. data/assets/icomoon/fonts/icomoon.woff +0 -0
  39. data/assets/icomoon/selection.json +551 -404
  40. data/assets/icomoon/style.css +11 -12
  41. data/assets/img/me.jpg +0 -0
  42. data/assets/img/me@2x.jpg +0 -0
  43. data/assets/img/nap.jpg +0 -0
  44. data/assets/js/hydejack.js +2 -2
  45. data/assets/version.json +1 -1
  46. metadata +8 -19
@@ -4,7 +4,6 @@ layout: base
4
4
 
5
5
  {% for post in paginator.posts %}
6
6
  {% include post.html post=post link_title=true excerpt=true %}
7
- <br/>
8
7
  {% endfor %}
9
8
 
10
9
  {% include pagination.html %}
@@ -17,7 +17,7 @@
17
17
  /\___/ \ \____/
18
18
  \/__/ \/___/
19
19
 
20
- Powered by Hydejack v6.3.0 (https://qwtel.com/hydejack/)
20
+ Powered by Hydejack v6.4.0 (https://qwtel.com/hydejack/)
21
21
  -->{% capture _LINE_FEED %}
22
22
  {% endcapture %}{% if site.compress_html.ignore.envs contains jekyll.environment %}{{ content }}{% else %}{% capture _content %}{{ content }}{% endcapture %}{% assign _profile = site.compress_html.profile %}{% if site.compress_html.endings == "all" %}{% assign _endings = "html head body li dt dd p rt rp optgroup option colgroup caption thead tbody tfoot tr td th" | split: " " %}{% else %}{% assign _endings = site.compress_html.endings %}{% endif %}{% for _element in _endings %}{% capture _end %}</{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _end %}{% endfor %}{% if _profile and _endings %}{% assign _profile_endings = _content | size | plus: 1 %}{% endif %}{% for _element in site.compress_html.startings %}{% capture _start %}<{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _start %}{% endfor %}{% if _profile and site.compress_html.startings %}{% assign _profile_startings = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.comments == "all" %}{% assign _comments = "<!-- -->" | split: " " %}{% else %}{% assign _comments = site.compress_html.comments %}{% endif %}{% if _comments.size == 2 %}{% capture _comment_befores %}.{{ _content }}{% endcapture %}{% assign _comment_befores = _comment_befores | split: _comments.first %}{% for _comment_before in _comment_befores %}{% if forloop.first %}{% continue %}{% endif %}{% capture _comment_outside %}{% if _carry %}{{ _comments.first }}{% endif %}{{ _comment_before }}{% endcapture %}{% capture _comment %}{% unless _carry %}{{ _comments.first }}{% endunless %}{{ _comment_outside | split: _comments.last | first }}{% if _comment_outside contains _comments.last %}{{ _comments.last }}{% assign _carry = false %}{% else %}{% assign _carry = true %}{% endif %}{% endcapture %}{% assign _content = _content | remove_first: _comment %}{% endfor %}{% if _profile %}{% assign _profile_comments = _content | size | plus: 1 %}{% endif %}{% endif %}{% assign _pre_befores = _content | split: "<pre" %}{% assign _content = "" %}{% for _pre_before in _pre_befores %}{% assign _pres = _pre_before | split: "</pre>" %}{% assign _pres_after = "" %}{% if _pres.size != 0 %}{% if site.compress_html.blanklines %}{% assign _lines = _pres.last | split: _LINE_FEED %}{% capture _pres_after %}{% for _line in _lines %}{% assign _trimmed = _line | split: " " | join: " " %}{% if _trimmed != empty or forloop.last %}{% unless forloop.first %}{{ _LINE_FEED }}{% endunless %}{{ _line }}{% endif %}{% endfor %}{% endcapture %}{% else %}{% assign _pres_after = _pres.last | split: " " | join: " " %}{% endif %}{% endif %}{% capture _content %}{{ _content }}{% if _pre_before contains "</pre>" %}<pre{{ _pres.first }}</pre>{% endif %}{% unless _pre_before contains "</pre>" and _pres.size == 1 %}{{ _pres_after }}{% endunless %}{% endcapture %}{% endfor %}{% if _profile %}{% assign _profile_collapse = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.clippings == "all" %}{% assign _clippings = "html head title base link meta style body article section nav aside h1 h2 h3 h4 h5 h6 hgroup header footer address p hr blockquote ol ul li dl dt dd figure figcaption main div table caption colgroup col tbody thead tfoot tr td th" | split: " " %}{% else %}{% assign _clippings = site.compress_html.clippings %}{% endif %}{% for _element in _clippings %}{% assign _edges = " <e;<e; </e>;</e>;</e> ;</e>" | replace: "e", _element | split: ";" %}{% assign _content = _content | replace: _edges[0], _edges[1] | replace: _edges[2], _edges[3] | replace: _edges[4], _edges[5] %}{% endfor %}{% if _profile and _clippings %}{% assign _profile_clippings = _content | size | plus: 1 %}{% endif %}{{ _content }}{% if _profile %} <table id="compress_html_profile_{{ site.time | date: "%Y%m%d" }}" class="compress_html_profile"> <thead> <tr> <td>Step <td>Bytes <tbody> <tr> <td>raw <td>{{ content | size }}{% if _profile_endings %} <tr> <td>endings <td>{{ _profile_endings }}{% endif %}{% if _profile_startings %} <tr> <td>startings <td>{{ _profile_startings }}{% endif %}{% if _profile_comments %} <tr> <td>comments <td>{{ _profile_comments }}{% endif %}{% if _profile_collapse %} <tr> <td>collapse <td>{{ _profile_collapse }}{% endif %}{% if _profile_clippings %} <tr> <td>clippings <td>{{ _profile_clippings }}{% endif %} </table>{% endif %}{% endif %}
23
23
  </html>
@@ -15,17 +15,18 @@ layout: base
15
15
  {% endif %}
16
16
 
17
17
  {% if page.title.size > 0 %}
18
- <h1 class="page-title">{{ page.title }}</h1>
19
- {% include message.html text=page.description %}
20
- <hr/>
18
+ <header>
19
+ <h1 class="page-title">{{ page.title }}</h1>
20
+ {% include message.html text=page.description %}
21
+ </header>
22
+ <hr class="sr-only"/>
21
23
  {% endif %}
22
24
 
23
25
  {% for post in posts %}
24
26
  {% assign currentdate = post.date | date: "%Y" %}
25
27
  {% if currentdate != date %}
26
28
  {% unless forloop.first %}</ul>{% endunless %}
27
- <h2 id="y{{post.date | date: "%Y"}}">{{ currentdate }}</h2>
28
- <hr/>
29
+ <h2 id="y{{post.date | date: "%Y"}}" class="hr">{{ currentdate }}</h2>
29
30
  <ul class="related-posts">
30
31
  {% assign date = currentdate %}
31
32
  {% endif %}
@@ -3,9 +3,10 @@ layout: base
3
3
  ---
4
4
 
5
5
  <article class="page" role="article">
6
- <h1 class="page-title">{{ page.title }}</h1>
7
- {% include message.html text=page.description %}
8
- <hr/>
6
+ <header style="margin-bottom:2rem">
7
+ <h1 class="page-title">{{ page.title }}</h1>
8
+ {% include message.html text=page.description %}
9
+ </header>
9
10
 
10
11
  {{ content }}
11
12
  </article>
@@ -69,7 +69,7 @@ body, main {
69
69
  // border: 0;
70
70
  }
71
71
 
72
- .clearfix {
72
+ .clearfix, .clearafter::after {
73
73
  @include clearfix();
74
74
  }
75
75
 
@@ -137,3 +137,7 @@ h1, h2, h3, h4, h5, h6 {
137
137
  50% { transform: translateY(-2rem); opacity: 0; }
138
138
  to { transform: translateY(0); opacity: 1; }
139
139
  }
140
+
141
+ .mb6 {
142
+ margin-bottom: 6rem;
143
+ }
@@ -69,7 +69,7 @@ body, main {
69
69
  border: 0;
70
70
  }
71
71
 
72
- // .clearfix {
72
+ // .clearfix, .clearafter::after {
73
73
  // @include clearfix();
74
74
  // }
75
75
 
@@ -137,3 +137,7 @@ a, .a {
137
137
  // 50% { transform: translateY(-2rem); opacity: 0; }
138
138
  // to { transform: translateY(0); opacity: 1; }
139
139
  // }
140
+ //
141
+ // .mb6 {
142
+ // margin-bottom: 6rem;
143
+ // }
@@ -1,9 +1,3 @@
1
- /* Container
2
- *
3
- * Align the contents of the site above the proper threshold with some margin-fu
4
- * with a 25%-wide `.sidebar`.
5
- */
6
-
7
1
  .content {
8
2
  position: relative;
9
3
  margin-left: auto;
@@ -20,6 +20,10 @@
20
20
  margin-left: -1.5rem;
21
21
  color: $gray!important;
22
22
 
23
+ &::after {
24
+ content: "\2630"; // ☰
25
+ }
26
+
23
27
  @media screen and (min-width: $break-point-2) {
24
28
  padding: 1.25rem 1.5rem;
25
29
  position: absolute;
@@ -35,7 +39,7 @@
35
39
  // }
36
40
  }
37
41
 
38
- .shadow-main {
42
+ .animation-main {
39
43
  // opacity: 0;
40
44
  // will-change: opacity;
41
45
  pointer-events: none;
@@ -10,6 +10,7 @@
10
10
  // padding-top: 0;
11
11
  // padding-bottom: 0;
12
12
  // min-height: 0;
13
+ // height: 0;
13
14
  // }
14
15
 
15
16
  .menu {
@@ -19,6 +20,10 @@
19
20
  // margin-left: -1.5rem;
20
21
  // color: $gray!important;
21
22
  //
23
+ // &::after {
24
+ // content: "\2630"; // ☰
25
+ // }
26
+ //
22
27
  // @media screen and (min-width: $break-point-2) {
23
28
  // padding: 1.25rem 1.5rem;
24
29
  // position: absolute;
@@ -34,7 +39,7 @@
34
39
  }
35
40
  }
36
41
 
37
- .shadow-main {
42
+ .animation-main {
38
43
  opacity: 0;
39
44
  will-change: opacity;
40
45
  // pointer-events: none;
@@ -1,10 +1,3 @@
1
- /*
2
- * Sidebar
3
- *
4
- * Flexible banner for housing site name, intro, and "footer" content. Starts
5
- * out above content in mobile and later moves to the side with wider viewports.
6
- */
7
-
8
1
  .sidebar {
9
2
  color: rgba(255,255,255,.75);
10
3
  text-align: left;
@@ -78,15 +71,13 @@
78
71
 
79
72
  .sidebar-sticky {
80
73
  position: relative;
81
- padding-left: 1rem;
82
- padding-right: 1rem;
83
74
  z-index: 3;
84
75
 
85
76
  @media screen {
86
77
  position: absolute;
87
- right: 1rem;
78
+ right: 2rem;
88
79
  bottom: 1rem;
89
- left: 1rem;
80
+ left: 2rem;
90
81
  }
91
82
  }
92
83
 
@@ -99,27 +90,16 @@
99
90
  .sidebar-nav > ul {
100
91
  list-style: none;
101
92
  padding-left: 0;
102
-
103
- > li:last-child > .sidebar-nav-item {
104
- border-bottom: 1px solid rgba(255, 255, 255, 0.2);
105
- }
93
+ margin-bottom: .5rem;
94
+ // border-top: 1px solid rgba(255, 255, 255, 0.2);
106
95
  }
107
96
 
108
97
  a.sidebar-nav-item {
109
98
  font-weight: bold;
110
99
  display: block;
111
100
  line-height: 1.75;
112
- margin: 0 -2rem;
113
- padding: .25rem 2rem;
114
- border-top: 1px solid rgba(255, 255, 255, 0.2);
115
- border-bottom: none;
116
- // transition: background-color 500ms ease;
117
- //
118
- // &:hover, &:focus {
119
- // border-bottom: none;
120
- // background-color: rgba(255, 255, 255, 0.1);
121
- // transition: background-color 50ms ease;
122
- // }
101
+ padding: .25rem 0;
102
+ border-bottom: 1px solid rgba(255, 255, 255, 0.2);
123
103
  }
124
104
 
125
105
  // @media print {
@@ -1,10 +1,3 @@
1
- /*
2
- * Sidebar
3
- *
4
- * Flexible banner for housing site name, intro, and "footer" content. Starts
5
- * out above content in mobile and later moves to the side with wider viewports.
6
- */
7
-
8
1
  .sidebar {
9
2
  // color: rgba(255,255,255,.75);
10
3
  // text-align: left;
@@ -79,9 +72,9 @@
79
72
  //
80
73
  // @media screen {
81
74
  // position: absolute;
82
- // right: 1rem;
75
+ // right: 2rem;
83
76
  // bottom: 1rem;
84
- // left: 1rem;
77
+ // left: 2rem;
85
78
  // }
86
79
  // }
87
80
  //
@@ -94,28 +87,17 @@
94
87
  // .sidebar-nav > ul {
95
88
  // list-style: none;
96
89
  // padding-left: 0;
97
- //
98
- // > li:last-child > .sidebar-nav-item {
99
- // border-bottom: 1px solid rgba(255, 255, 255, 0.2);
100
- // }
90
+ // margin-bottom: .5rem;
91
+ // border-top: 1px solid rgba(255, 255, 255, 0.2);
101
92
  // }
102
93
  //
103
- a.sidebar-nav-item {
104
- // font-weight: bold;
105
- // display: block;
106
- // line-height: 1.75;
107
- // margin: 0 -2rem;
108
- // padding: .25rem 2rem;
109
- // border-top: 1px solid rgba(255, 255, 255, 0.2);
110
- // border-bottom: none;
111
- transition: background-color 500ms ease;
112
-
113
- &:hover, &:focus {
114
- border-bottom: none;
115
- background-color: rgba(255, 255, 255, 0.1);
116
- transition: background-color 50ms ease-out;
117
- }
118
- }
94
+ // a.sidebar-nav-item {
95
+ // font-weight: bold;
96
+ // display: block;
97
+ // line-height: 1.75;
98
+ // padding: .25rem 0;
99
+ // border-bottom: 1px solid rgba(255, 255, 255, 0.2);
100
+ // }
119
101
 
120
102
  @media print {
121
103
  .sidebar {
@@ -19,7 +19,7 @@
19
19
  text-align: center;
20
20
  font-size: 1.6rem;
21
21
  line-height: 3rem;
22
- width: 3.125rem;
22
+ width: 3.1249rem;
23
23
  height: 4rem;
24
24
  padding: .5rem 0;
25
25
 
@@ -9,6 +9,10 @@
9
9
  li + li {
10
10
  margin-top: .25rem;
11
11
  }
12
+
13
+ > header {
14
+ margin-bottom: 2rem;
15
+ }
12
16
  }
13
17
 
14
18
  // Blog post or page title
@@ -24,11 +28,14 @@
24
28
  color: $gray;
25
29
  }
26
30
 
27
- // .dingbat::after {
28
- // content: "❖";
31
+ // hr.dingbat {
32
+ // border: 0;
33
+ // }
34
+ //
35
+ // hr.dingbat::after {
36
+ // content: "\2756"; // ❖
29
37
  // display: block;
30
38
  // text-align: center;
31
- // margin-top: 3rem;
32
39
  // font-size: 1.5rem;
33
40
  // color: #ddd;
34
41
  // }
@@ -9,6 +9,10 @@
9
9
  // li + li {
10
10
  // margin-top: .25rem;
11
11
  // }
12
+ //
13
+ // > header {
14
+ // margin-bottom: 2rem;
15
+ // }
12
16
  }
13
17
 
14
18
  // Blog post or page title
@@ -24,11 +28,14 @@
24
28
  // color: $gray;
25
29
  }
26
30
 
27
- .dingbat::after {
28
- content: "❖";
31
+ hr.dingbat {
32
+ border: 0;
33
+ }
34
+
35
+ hr.dingbat::after {
36
+ content: "\2756"; // ❖
29
37
  display: block;
30
38
  text-align: center;
31
- margin-top: 1.5rem;
32
39
  font-size: 1.5rem;
33
40
  color: #ddd;
34
41
  }
@@ -0,0 +1,130 @@
1
+ table {
2
+ margin-bottom: 1rem;
3
+ width: 100%;
4
+ width: calc(100% + 2rem);
5
+ margin-left: -1rem;
6
+ border: 1px solid $border-color;
7
+ border-collapse: collapse;
8
+ border-spacing: 0;
9
+ }
10
+
11
+ td, th {
12
+ padding: .25rem .5rem;
13
+ border: 1px solid $border-color;
14
+
15
+ &:first-child {
16
+ padding-left: 1rem;
17
+ }
18
+
19
+ &:last-child {
20
+ padding-right: 1rem;
21
+ }
22
+ }
23
+
24
+ thead + tbody,
25
+ tbody + tbody,
26
+ tfoot {
27
+ border-top: 3px double $border-color;
28
+ }
29
+
30
+ tbody tr:nth-child(odd) td,
31
+ tbody tr:nth-child(odd) th {
32
+ background-color: $gray-bg;
33
+ }
34
+
35
+ // CSS only Responsive Tables
36
+ // http://dbushell.com/2016/03/04/css-only-responsive-tables/
37
+ // by David Bushell
38
+ // @mixin scroll-table() {
39
+ // display: block;
40
+ // vertical-align: top;
41
+ // overflow-x: auto;
42
+ // white-space: nowrap; // optional - looks better for small cell values
43
+ // border: none;
44
+ // -webkit-overflow-scrolling: touch;
45
+ // }
46
+ //
47
+ // @mixin flip-table() {
48
+ // display: flex;
49
+ // overflow: hidden;
50
+ // background: none;
51
+ // border: none;
52
+ // border-top: 1px solid $border-color;
53
+ // border-bottom: 1px solid $border-color;
54
+ //
55
+ // thead {
56
+ // display: flex;
57
+ // flex-shrink: 0;
58
+ // min-width: min-content;
59
+ // margin-right: 1px;
60
+ //
61
+ // th {
62
+ // padding-left: 1rem;
63
+ // }
64
+ // }
65
+ //
66
+ // tbody {
67
+ // display: flex;
68
+ // position: relative;
69
+ // overflow-x: auto;
70
+ // overflow-y: hidden;
71
+ // -webkit-overflow-scrolling: touch;
72
+ // border-top: none;
73
+ // }
74
+ //
75
+ // tr {
76
+ // display: flex;
77
+ // flex-direction: column;
78
+ // min-width: min-content;
79
+ // flex-shrink: 0;
80
+ //
81
+ // td {
82
+ // border-left: none;
83
+ // }
84
+ //
85
+ // &:first-child {
86
+ // td {
87
+ // border-left: 1px solid $border-color;
88
+ // }
89
+ // }
90
+ //
91
+ // &:last-child {
92
+ // td {
93
+ // padding-right: 1rem;
94
+ // border-right: 1px solid $border-color;
95
+ // }
96
+ // }
97
+ // }
98
+ //
99
+ // td, th {
100
+ // display: block;
101
+ // border-bottom: none;
102
+ //
103
+ // &:first-child {
104
+ // padding-left: .5rem;
105
+ // border-top: none;
106
+ // }
107
+ //
108
+ // &:last-child {
109
+ // padding-right: .5rem;
110
+ // }
111
+ // }
112
+ // }
113
+ //
114
+ // table.scroll-table {
115
+ // @include scroll-table();
116
+ // }
117
+ //
118
+ // table.flip-table {
119
+ // @include flip-table();
120
+ // }
121
+ //
122
+ // @media screen and (max-width: $break-point-4) {
123
+ // table.scroll-table-small {
124
+ // @include scroll-table();
125
+ // }
126
+ //
127
+ // table.flip-table-small {
128
+ // @include flip-table();
129
+ // }
130
+ // }