phantom-blergh 0.1.1 → 0.1.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b61ee26c24b505bf72d8ced77e50a5b6c648bb6e
4
- data.tar.gz: ea702b41ba1ce3b9c253dbfa2efd94aa35cdb413
3
+ metadata.gz: 8c57971ced0c8da795fa0f8f236dd8b57efc0daa
4
+ data.tar.gz: 5a2ed4318f3aae9e8271b801a4d0ea52ee76d4f1
5
5
  SHA512:
6
- metadata.gz: 85a8500f08f64475412ab79e8f16507c1ea238ffc300b75c995759069b20e1bfa51257c64809d8ab18cbaed387737d2123cde7d7fb4a3baa9ee01c363753135d
7
- data.tar.gz: e9b82f7933134b999baa484c29dc21a5d02663069800f72b016496766d6b8c79dfac44c16ac752ab40c222f3f8dfacdeba19f1552349696770b68c64725e3be2
6
+ metadata.gz: df70b1882640cc633caa3b7612defeb212ab665a296e9ed7faed37faf5746c97ac4e652043ab389ad1024107d2079e15eb149f5b1167873f95dba18a3fddb20a
7
+ data.tar.gz: 6162bf84cf3f660e3269282f23bf934d3ca22de21cfc2d3df1d1a4330e8e89b9b0e4b6ad0db119bed7948ed2ef7eb6b372b1e22ee8b2a9792f170a592fce8714
data/_includes/head.html CHANGED
@@ -23,14 +23,16 @@
23
23
  {% endif %}
24
24
 
25
25
  <title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
26
- <meta name="description" content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape }}">
26
+ <meta name="description" content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape }}" />
27
27
 
28
- <link rel="stylesheet" href="{{ "/assets/favicon.png" | relative_url }}">
29
- <link rel="stylesheet" href="{{ "/assets/css/main.css" | relative_url }}">
28
+ {% include twitter-card-meta.html %}
29
+
30
+ <link rel="stylesheet" href="{{ "/assets/favicon.png" | relative_url }}" />
31
+ <link rel="stylesheet" href="{{ "/assets/css/main.css" | relative_url }}" />
30
32
  <!--[if lte IE 9]><link rel="stylesheet" href="{{ "/assets/css/ie9.css" | relative_url }}" /><![endif]-->
31
33
 
32
- <link rel="canonical" href="{{ page.url | replace:'index.html','' | absolute_url }}">
33
- <link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}" href="{{ "/feed.xml" | relative_url }}">
34
+ <link rel="canonical" href="{{ page.url | replace:'index.html','' | absolute_url }}" />
35
+ <link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}" href="{{ "/feed.xml" | relative_url }}" />
34
36
 
35
37
  {% if jekyll.environment == 'production' and site.google_analytics %}
36
38
  {% include google-analytics.html %}
@@ -0,0 +1,13 @@
1
+ <meta name="twitter:card" content="summary" />
2
+ <meta name="twitter:site" content="@{{ site.twitter_username }}" />
3
+ <meta name="twitter:creator" content="@{{ site.twitter_username }}" />
4
+ <meta name="twitter:title" content="{{ page.title | default: site.title }}" />
5
+ {% if page.url %}
6
+ <meta name="twitter:url" content="{{ site.url }}{{ page.url }}" />
7
+ {% endif %}
8
+ <meta name="twitter:description" content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape }}" />
9
+ {% if page.image %}
10
+ <meta name="twitter:image:src" content="{{ site.url }}/images/{{ page.image }}" />
11
+ {% else %}
12
+ <meta name="twitter:image:src" content="{{ site.url }}/assets/logo.svg" />
13
+ {% endif %}
File without changes
data/assets/js/main.js CHANGED
@@ -1,200 +1,200 @@
1
- /*
2
- Phantom by HTML5 UP
3
- html5up.net | @ajlkn
4
- Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5
- */
6
-
7
- (function($) {
8
-
9
- skel.breakpoints({
10
- xlarge: '(max-width: 1680px)',
11
- large: '(max-width: 1280px)',
12
- medium: '(max-width: 980px)',
13
- small: '(max-width: 736px)',
14
- xsmall: '(max-width: 480px)'
15
- });
16
-
17
- $(function() {
18
-
19
- var $window = $(window),
20
- $body = $('body');
21
-
22
- // Disable animations/transitions until the page has loaded.
23
- $body.addClass('is-loading');
24
-
25
- $window.on('load', function() {
26
- window.setTimeout(function() {
27
- $body.removeClass('is-loading');
28
- }, 100);
29
- });
30
-
31
- // Touch?
32
- if (skel.vars.touch)
33
- $body.addClass('is-touch');
34
-
35
- // Forms.
36
- var $form = $('form');
37
-
38
- // Auto-resizing textareas.
39
- $form.find('textarea').each(function() {
40
-
41
- var $this = $(this),
42
- $wrapper = $('<div class="textarea-wrapper"></div>'),
43
- $submits = $this.find('input[type="submit"]');
44
-
45
- $this
46
- .wrap($wrapper)
47
- .attr('rows', 1)
48
- .css('overflow', 'hidden')
49
- .css('resize', 'none')
50
- .on('keydown', function(event) {
51
-
52
- if (event.keyCode == 13
53
- && event.ctrlKey) {
54
-
55
- event.preventDefault();
56
- event.stopPropagation();
57
-
58
- $(this).blur();
59
-
60
- }
61
-
62
- })
63
- .on('blur focus', function() {
64
- $this.val($.trim($this.val()));
65
- })
66
- .on('input blur focus --init', function() {
67
-
68
- $wrapper
69
- .css('height', $this.height());
70
-
71
- $this
72
- .css('height', 'auto')
73
- .css('height', $this.prop('scrollHeight') + 'px');
74
-
75
- })
76
- .on('keyup', function(event) {
77
-
78
- if (event.keyCode == 9)
79
- $this
80
- .select();
81
-
82
- })
83
- .triggerHandler('--init');
84
-
85
- // Fix.
86
- if (skel.vars.browser == 'ie'
87
- || skel.vars.mobile)
88
- $this
89
- .css('max-height', '10em')
90
- .css('overflow-y', 'auto');
91
-
92
- });
93
-
94
- // Fix: Placeholder polyfill.
95
- $form.placeholder();
96
-
97
- // Prioritize "important" elements on medium.
98
- skel.on('+medium -medium', function() {
99
- $.prioritize(
100
- '.important\\28 medium\\29',
101
- skel.breakpoint('medium').active
102
- );
103
- });
104
-
105
- // Menu.
106
- var $menu = $('#menu');
107
-
108
- $menu.wrapInner('<div class="inner"></div>');
109
-
110
- $menu._locked = false;
111
-
112
- $menu._lock = function() {
113
-
114
- if ($menu._locked)
115
- return false;
116
-
117
- $menu._locked = true;
118
-
119
- window.setTimeout(function() {
120
- $menu._locked = false;
121
- }, 350);
122
-
123
- return true;
124
-
125
- };
126
-
127
- $menu._show = function() {
128
-
129
- if ($menu._lock())
130
- $body.addClass('is-menu-visible');
131
-
132
- };
133
-
134
- $menu._hide = function() {
135
-
136
- if ($menu._lock())
137
- $body.removeClass('is-menu-visible');
138
-
139
- };
140
-
141
- $menu._toggle = function() {
142
-
143
- if ($menu._lock())
144
- $body.toggleClass('is-menu-visible');
145
-
146
- };
147
-
148
- $menu
149
- .appendTo($body)
150
- .on('click', function(event) {
151
- event.stopPropagation();
152
- })
153
- .on('click', 'a', function(event) {
154
-
155
- var href = $(this).attr('href');
156
-
157
- event.preventDefault();
158
- event.stopPropagation();
159
-
160
- // Hide.
161
- $menu._hide();
162
-
163
- // Redirect.
164
- if (href == '#menu')
165
- return;
166
-
167
- window.setTimeout(function() {
168
- window.location.href = href;
169
- }, 350);
170
-
171
- })
172
- .append('<a class="close" href="#menu">Close</a>');
173
-
174
- $body
175
- .on('click', 'a[href="#menu"]', function(event) {
176
-
177
- event.stopPropagation();
178
- event.preventDefault();
179
-
180
- // Toggle.
181
- $menu._toggle();
182
-
183
- })
184
- .on('click', function(event) {
185
-
186
- // Hide.
187
- $menu._hide();
188
-
189
- })
190
- .on('keydown', function(event) {
191
-
192
- // Hide on escape.
193
- if (event.keyCode == 27)
194
- $menu._hide();
195
-
196
- });
197
-
198
- });
199
-
1
+ /*
2
+ Phantom by HTML5 UP
3
+ html5up.net | @ajlkn
4
+ Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5
+ */
6
+
7
+ (function($) {
8
+
9
+ skel.breakpoints({
10
+ xlarge: '(max-width: 1680px)',
11
+ large: '(max-width: 1280px)',
12
+ medium: '(max-width: 980px)',
13
+ small: '(max-width: 736px)',
14
+ xsmall: '(max-width: 480px)'
15
+ });
16
+
17
+ $(function() {
18
+
19
+ var $window = $(window),
20
+ $body = $('body');
21
+
22
+ // Disable animations/transitions until the page has loaded.
23
+ $body.addClass('is-loading');
24
+
25
+ $window.on('load', function() {
26
+ window.setTimeout(function() {
27
+ $body.removeClass('is-loading');
28
+ }, 100);
29
+ });
30
+
31
+ // Touch?
32
+ if (skel.vars.touch)
33
+ $body.addClass('is-touch');
34
+
35
+ // Forms.
36
+ var $form = $('form');
37
+
38
+ // Auto-resizing textareas.
39
+ $form.find('textarea').each(function() {
40
+
41
+ var $this = $(this),
42
+ $wrapper = $('<div class="textarea-wrapper"></div>'),
43
+ $submits = $this.find('input[type="submit"]');
44
+
45
+ $this
46
+ .wrap($wrapper)
47
+ .attr('rows', 1)
48
+ .css('overflow', 'hidden')
49
+ .css('resize', 'none')
50
+ .on('keydown', function(event) {
51
+
52
+ if (event.keyCode == 13
53
+ && event.ctrlKey) {
54
+
55
+ event.preventDefault();
56
+ event.stopPropagation();
57
+
58
+ $(this).blur();
59
+
60
+ }
61
+
62
+ })
63
+ .on('blur focus', function() {
64
+ $this.val($.trim($this.val()));
65
+ })
66
+ .on('input blur focus --init', function() {
67
+
68
+ $wrapper
69
+ .css('height', $this.height());
70
+
71
+ $this
72
+ .css('height', 'auto')
73
+ .css('height', $this.prop('scrollHeight') + 'px');
74
+
75
+ })
76
+ .on('keyup', function(event) {
77
+
78
+ if (event.keyCode == 9)
79
+ $this
80
+ .select();
81
+
82
+ })
83
+ .triggerHandler('--init');
84
+
85
+ // Fix.
86
+ if (skel.vars.browser == 'ie'
87
+ || skel.vars.mobile)
88
+ $this
89
+ .css('max-height', '10em')
90
+ .css('overflow-y', 'auto');
91
+
92
+ });
93
+
94
+ // Fix: Placeholder polyfill.
95
+ $form.placeholder();
96
+
97
+ // Prioritize "important" elements on medium.
98
+ skel.on('+medium -medium', function() {
99
+ $.prioritize(
100
+ '.important\\28 medium\\29',
101
+ skel.breakpoint('medium').active
102
+ );
103
+ });
104
+
105
+ // Menu.
106
+ var $menu = $('#menu');
107
+
108
+ $menu.wrapInner('<div class="inner"></div>');
109
+
110
+ $menu._locked = false;
111
+
112
+ $menu._lock = function() {
113
+
114
+ if ($menu._locked)
115
+ return false;
116
+
117
+ $menu._locked = true;
118
+
119
+ window.setTimeout(function() {
120
+ $menu._locked = false;
121
+ }, 350);
122
+
123
+ return true;
124
+
125
+ };
126
+
127
+ $menu._show = function() {
128
+
129
+ if ($menu._lock())
130
+ $body.addClass('is-menu-visible');
131
+
132
+ };
133
+
134
+ $menu._hide = function() {
135
+
136
+ if ($menu._lock())
137
+ $body.removeClass('is-menu-visible');
138
+
139
+ };
140
+
141
+ $menu._toggle = function() {
142
+
143
+ if ($menu._lock())
144
+ $body.toggleClass('is-menu-visible');
145
+
146
+ };
147
+
148
+ $menu
149
+ .appendTo($body)
150
+ .on('click', function(event) {
151
+ event.stopPropagation();
152
+ })
153
+ .on('click', 'a', function(event) {
154
+
155
+ var href = $(this).attr('href');
156
+
157
+ event.preventDefault();
158
+ event.stopPropagation();
159
+
160
+ // Hide.
161
+ $menu._hide();
162
+
163
+ // Redirect.
164
+ if (href == '#menu')
165
+ return;
166
+
167
+ window.setTimeout(function() {
168
+ window.location.href = href;
169
+ }, 350);
170
+
171
+ })
172
+ .append('<a class="close" href="#menu">Close</a>');
173
+
174
+ $body
175
+ .on('click', 'a[href="#menu"]', function(event) {
176
+
177
+ event.stopPropagation();
178
+ event.preventDefault();
179
+
180
+ // Toggle.
181
+ $menu._toggle();
182
+
183
+ })
184
+ .on('click', function(event) {
185
+
186
+ // Hide.
187
+ $menu._hide();
188
+
189
+ })
190
+ .on('keydown', function(event) {
191
+
192
+ // Hide on escape.
193
+ if (event.keyCode == 27)
194
+ $menu._hide();
195
+
196
+ });
197
+
198
+ });
199
+
200
200
  })(jQuery);