picklecore 0.7.1 → 0.8.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c1f6a9d6fd36b54bfdb91f5bb797da95c358693e132a7a11fcec00b95a7e540d
4
- data.tar.gz: fb71ce82b30672e2daf0e0dcdb06210de0c8210c90bf4f55a028239fe32e8c23
3
+ metadata.gz: a6ce87d0938a941d4139aefea5cf36648502daebf30b7cf42a9ceff94e0ab4d4
4
+ data.tar.gz: 11c0bfab88c37716af55c3bebc8bdf0ac808d7eb8a899530eb67f8f9f5956ba2
5
5
  SHA512:
6
- metadata.gz: 71b773521cd7a540990ede2ff52a045b420173fd640222c74a23f9ad5ebefbaf2a81109e2fe7cb819c48b7c266df507e962baac94386208c79dba99a2d812dfd
7
- data.tar.gz: 387682db616523886fa42e11c6d4011ffe135dbe4041b1f2d9558a8fcbfd7c85ebb09423d970c8570c2bd32f7120b308f0f2b98d8778186ff982e4853facf560
6
+ metadata.gz: 626ab6eacafd1b6b5ea00226a266c0ba76750484c49f95d82910fb735385172c8d0d8b2cacbda718067cff9b356808d338a2a2198f0492580b4b7ebb1fc3eb16
7
+ data.tar.gz: 356adbcf10f705629cc00de1d6d4d122791d45b759609b5ead587c2345b9485287e0c69dd5e558a502aeb1e6470cfef9bc53c195175d8da54436459f7eb839f5
data/README.md CHANGED
@@ -45,20 +45,22 @@ PickleCore is (probably) the most customizable theme out in the Jekyllverse. Her
45
45
  * `apple-touch-icon` - the URL of the Apple touch icon for the site if you have one (see [this article](https://www.computerhope.com/jargon/a/appletou.htm) for more info)
46
46
  * `index_on_google` - `true` or `false` depending if you want your site in Google search results
47
47
  * `keywords` - an inline list of comma (no spaces) seperated keywords (for SEO) (e.g. `keywords: "hello,world,this,is,my,site"`)
48
- * Favicons - this requires multiple steps so read all sub-bullets
49
- * `favicon_base` - route of where the favicons are served, e.g. `https://my.site/favicons/favicon-` (extension must be `PNG`)
50
- * `favicons` - array of resolutions, e.g.:
51
- ```yaml
52
- favicons:
53
- - "32" # 32x32
54
- - "64" # 64x64
55
- # and so on
56
- ```
48
+ * `images` - stuff for favicons
49
+ * Favicons - this requires multiple steps so read all sub-bullets
50
+ * `images.favicon_base` - route of where the favicons are served, e.g. `https://my.site/favicons/favicon-` (extension must be `PNG`)
51
+ * `images.favicons` - array of resolutions, e.g.:
52
+ ```yaml
53
+ images:
54
+ favicons:
55
+ - "32" # 32x32
56
+ - "64" # 64x64
57
+ # and so on
58
+ ```
59
+ * `images.tileimage` - the link to the Microsoft tile image
57
60
  * `browserconfigxml` - link to a `browserconfig.xml` for Microsoft-based browsers
58
- * `microsoft` - this is a dictionary that currently only has one option:
59
- * `tileimage` - the link to the tile image
60
61
  * The same thing can be applied to `twitter` with the subkey `image`, and `opengraph` with the subkey `image`
61
- * `twitter_username` - your Twitter username as a string (no `@`!)
62
+ * `twitter` - Twitter meta dictionary
63
+ * `username`: your Twitter username as a string (no `@`!)
62
64
  * `devto` - your [DEV.to](https://dev.to/) username (if you want it on the sidebar)
63
65
 
64
66
  Most of the favicons and images listed here can be made over at https://realfavicongenerator.net
@@ -36,7 +36,7 @@
36
36
  <i class="fab fa-twitter"></i>
37
37
  </td>
38
38
  <td>
39
- <a href="https://twitter.com/{{ site.twitter_username }}" class="nobreak" alt="Twitter">Twitter</a>
39
+ <a href="https://twitter.com/{{ site.twitter.username }}" class="nobreak" alt="Twitter">Twitter</a>
40
40
  </td>
41
41
  </tr>
42
42
  {% endif %}
@@ -66,7 +66,7 @@
66
66
  <i class="fab fa-dev"></i>
67
67
  </td>
68
68
  <td>
69
- <a href="https://dev.to/{{ site.devto }}" class="nobreak" alt="Dev.to Profile">Dev.to Profile</a>
69
+ <a href="https://dev.to/{{ site.devto }}" class="nobreak" alt="DEV Profile">DEV Profile</a>
70
70
  </td>
71
71
  </tr>
72
72
  {% endif %}
@@ -15,7 +15,7 @@ body {
15
15
  flex-direction: column;
16
16
  align-items: center;
17
17
  justify-content: center;
18
- font-family: "Open Sans", sans-serif;
18
+ font-family: "Open Sans";
19
19
  color: white;
20
20
  }
21
21
 
data/assets/js/main.js CHANGED
@@ -1,12 +1,3 @@
1
- function openNav() {
2
- document.getElementById("nav-icon4").classList.toggle("open");
3
- document.getElementById("nav").style.width = "265px";
4
- }
5
-
6
- function closeNav() {
7
- document.getElementById("nav").style.width = "0";
8
- }
9
-
10
1
  navOpen = false;
11
2
 
12
3
  function toggleNav() {
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: picklecore
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Reece Dunham
@@ -20,7 +20,7 @@ dependencies:
20
20
  version: '3.5'
21
21
  - - "<"
22
22
  - !ruby/object:Gem::Version
23
- version: '5.0'
23
+ version: '4.0'
24
24
  type: :runtime
25
25
  prerelease: false
26
26
  version_requirements: !ruby/object:Gem::Requirement
@@ -30,7 +30,7 @@ dependencies:
30
30
  version: '3.5'
31
31
  - - "<"
32
32
  - !ruby/object:Gem::Version
33
- version: '5.0'
33
+ version: '4.0'
34
34
  - !ruby/object:Gem::Dependency
35
35
  name: jekyll-default-layout
36
36
  requirement: !ruby/object:Gem::Requirement