type-on-strap 2.0.2 → 2.0.3

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: c90acd5397fcea549b6ba68adc2060c8b90f5854865f2f15387a90154ef24f6f
4
- data.tar.gz: 1b5e46f406ded2d05898b589c0631cdc03acac91d79ccda6bf830c4fab8cdb02
3
+ metadata.gz: 909d4360d960728b6976dae7998f9b7f01918238a0ea68a227d49ab0a38a2796
4
+ data.tar.gz: 8f5a5364a81b0559482a8093f9f14015e233102959a1a4f1fe744e09d62f3218
5
5
  SHA512:
6
- metadata.gz: 07212317b47794434438c652f13dee5201bc50715c63d4dfc1586db7fd0029e6de9d45054653c8fcca3624655e4585c5944764f893da1f9e4fa2fc8e3a07ec33
7
- data.tar.gz: abd72d8e2b9bb1131e42a472e27ebb48232f97c48058080f092eec23e0bdba30ba4e1baedf294935eb4638a3ea22d1ce7b97e19772f76786d28bcd943612f0e8
6
+ metadata.gz: 6e018b160763e591a46ee24f788c514a08172961c96c3a402f89f9bbc8c0ada741d2c5c395d2c13ea5770178382d0df5a70d9507d9c08712cc1ccd3653cf83b2
7
+ data.tar.gz: 3b2645e13b83aac4f1a36a5fafd57d0b0593641b8b0f0382913c95fb5a28bd7912e70c77943f47486709956e8597eb3a4f4b787e9493d5472a248bef36bc60fb
data/README.md CHANGED
@@ -198,11 +198,12 @@ All icon variables should be your username enclosed in quotes (e.g. "username")
198
198
  except for the following variables:
199
199
 
200
200
  ```yml
201
- rss: true # Make sure you created a feed.xml with feed.xml layout
201
+ rss: true
202
202
  email_address: type@example.com
203
203
  linkedin: https://www.linkedin.com/in/FirstLast
204
204
  stack_exchange: https://stackexchangecom/users/0000/first-last
205
205
  stack_overflow: https://stackoverflow.com/users/0000/first-last
206
+ youtube: UCqECaJ8Gagnn7YCbPEzWH6g # Youtube token of your channel in the url
206
207
  ```
207
208
 
208
209
  ### Customizing Posts
@@ -240,7 +241,15 @@ It will respect the page and theme layout, mind the padding on the sides.
240
241
  #### Post excerpt
241
242
 
242
243
  The [excerpt](https://jekyllrb.com/docs/posts/#post-excerpts) are the first lines of an article that is display on the blog page.
243
- The length of the excerpt has a default of around `250` characters and can be manually set in the post using:
244
+ The length of the excerpt has a default of around `250` characters or can be manually set in the post using:
245
+
246
+ in `conflig.yml`:
247
+
248
+ ```yml
249
+ excerpt: true
250
+ ```
251
+
252
+ Then in your post, add the `excerpt separator`:
244
253
 
245
254
  ```yml
246
255
  ---
data/_includes/icons.html CHANGED
@@ -256,7 +256,7 @@
256
256
 
257
257
  {% if site.data.social.youtube or site.theme_settings.youtube %}
258
258
  <li>
259
- <a href="https://www.youtube.com/user/{{ site.data.social.youtube }}"
259
+ <a href="https://www.youtube.com/channel/{{ site.data.social.youtube }}"
260
260
  title="{{ site.data.language.str_follow_on }} YouTube">
261
261
  <span class="fa-stack fa-lg">
262
262
  <i class="fa fa-circle fa-stack-2x"></i>
@@ -157,8 +157,8 @@ blockquote {
157
157
  box-shadow: 0 2px 2px $border-color;
158
158
  }
159
159
 
160
- blockquote p:last-child,
161
- footer p:last-child {
160
+ blockquote *:last-child,
161
+ footer *:last-child {
162
162
  margin-bottom: 0;
163
163
  }
164
164
 
@@ -29,25 +29,25 @@ $border-color: rgba(0, 0, 0, 0.1); // rgba recommended if using feature images
29
29
  // Typography colours
30
30
  $text-color: #262626;
31
31
  $meta: #595959; //lowest gray for accessible color
32
- $link-color: $theme-color; // #1ABC9C;
32
+ $link-color: $theme-color;
33
33
  $selection-color: #D4D4D4; // visible when highlighting text
34
34
  $blockquote-color: #EEF7FA; // $background-color;
35
35
 
36
- //Search color
37
- $link-shadow: transparentize($link-color, .6); //rgba(26, 188, 156, 0.6);
38
- $text-shadow: #3f3f3f;
39
- $search-color: #999;
40
-
41
- // Header colours
36
+ // Header
37
+ $header-background-color: $theme-color; // Only used when no header image
38
+ $header-text-color: #fff;
42
39
  $header-link-color: #383838;
43
40
  $navbar-separator-opacity: 0;
44
41
 
45
42
  // Feature image for articles
46
43
  $feature-image-text-color: #fff;
47
44
  $feature-image-size: cover; // options include "cover", "contain", "auto"
48
- // Header description box
49
- $header-desc-background-color: $theme-color;
50
- $header-desc-text-color: #FFF;
45
+
46
+ //Search colours
47
+ $link-shadow: transparentize($link-color, .6); //rgba(26, 188, 156, 0.6);
48
+ $text-shadow: #3f3f3f;
49
+ $search-color: #999;
50
+
51
51
 
52
52
  /* Syntax highlighting */
53
53
  // Syntax typography
@@ -6,8 +6,8 @@
6
6
  height: 100%;
7
7
  font-size: 1.2em;
8
8
  text-align: center;
9
- color: $header-desc-text-color;
10
- background: $header-desc-background-color no-repeat;
9
+ color: $header-text-color;
10
+ background: $header-background-color no-repeat;
11
11
  background-size: $feature-image-size;
12
12
 
13
13
  /* --- Responsive --- */
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: type-on-strap
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.2
4
+ version: 2.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sylhare
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-12-19 00:00:00.000000000 Z
12
+ date: 2020-01-31 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: jekyll