fenton-jekyll-boilerplate 0.0.9 → 0.0.11

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: e02cfbbec5aeeda75174152f68e62cfec600df11c12597621445747f8faff28c
4
- data.tar.gz: 3d9e61f75217540245830b1fa438908e7bc161d20c96f83f7471135c8587fc11
3
+ metadata.gz: 7eb6a36141efac9ebe7f0670c51c3a6f8f6b5418b987f8c8690923ec310c0b14
4
+ data.tar.gz: e55728ed07589138ffc7099a6dadf4c9926f560590954adb4d283da6c93ff423
5
5
  SHA512:
6
- metadata.gz: c72594035a4e50951b5ef8b521b34ef5ad2130f4c594e2a5983676f2093b29128be2fab2d8e34cdd5e728a235039228ea9bf4a4293313ba6a2a4234ba5756168
7
- data.tar.gz: 56138d962d6b5718aadb08c8d9c1f87dc62914e9dc7d131c300744d9a0894a4c96b08fe1ebc3cbccd464e137116893d3d59f2a6fb3fad7ded3583340608466f4
6
+ metadata.gz: 4bc3dfc6ba2e9a290d130e0057bf1b5731ae4748442ab031419327842a3c9836dfe2440246912e6004cf2ecab764634b602c7a65e4d7eb65ce50685bdbc38323
7
+ data.tar.gz: c10a24863d143d5cd4737efa0b0d2e21ce7542e0441275157a9e31781a034e2c232dd942d329004ba84fbb138384b7e7bb224248dd9be1eebf90220a0ae87ae9
data/_includes/head.html CHANGED
@@ -9,14 +9,14 @@
9
9
  <meta name="msapplication-navbutton-color" content="#{{site.theme_color_hex}}" />
10
10
  <meta name="apple-mobile-web-app-status-bar-style" content="#{{site.theme_color_hex}}" />
11
11
  <meta property="og:title" content="{{ page.title }}" />
12
- <meta property="og:url" content="{{ site.url }}{{ page.url | replace:'index.html',''}}" />
12
+ <meta property="og:url" content="{{ site.url }}{{ site.baseurl }}{{ page.url | replace:'index.html',''}}" />
13
13
  <meta property="og:type" content="website" />
14
14
  <meta property="og:description" content="{{ page.description }}" />
15
15
  {%- if post.banner-image -%}
16
16
  <meta property="og:image" content="{{ page.banner-image }}" />
17
17
  {%- endif %}
18
- <link rel="canonical" href="{{ site.url }}{{ page.url | replace:'index.html',''}}" />
19
- <link rel="alternate" type="application/rss+xml" title="Steve Fenton &raquo; Feed" href="https://www.stevefenton.co.uk/feed/" />
18
+ <link rel="canonical" href="{{ site.url }}{{ site.baseurl }}{{ page.url | replace:'index.html',''}}" />
19
+ <link rel="alternate" type="application/rss+xml" title="Steve Fenton &raquo; Feed" href="https://www.stevefenton.co.uk{{ site.baseurl }}/feed/" />
20
20
  <link rel="shortcut icon" href="{{ "/assets/icons/favicon.ico" | prepend: site.baseurl }}" type="image/x-icon" />
21
21
  <link rel="apple-touch-icon" href="{{ "/assets/icons/apple-touch-icon.png" | prepend: site.baseurl }}" />
22
22
  <link rel="alternate" href="{{ "/sitemap.xml" | prepend: site.baseurl }}" type="application/rss+xml" />
data/assets/css/main.css CHANGED
@@ -68,7 +68,7 @@ blockquote {
68
68
  padding: 0.1px 1.2em;
69
69
  position: relative;
70
70
  box-shadow: var(--box-shadow);
71
-
71
+ margin: 1.2em 0;
72
72
  }
73
73
 
74
74
  blockquote::after {
@@ -509,6 +509,16 @@ form.site-search button {
509
509
  box-shadow: var(--box-shadow);
510
510
  }
511
511
 
512
+ .simple-grid {
513
+ display: grid;
514
+ grid-template-columns: 1fr 1fr;
515
+ grid-gap: 1rem;
516
+ }
517
+
518
+ .simple-grid > * > * {
519
+ width: 100%;
520
+ }
521
+
512
522
  /* Smaller Screens */
513
523
 
514
524
  @media (max-width: 860px) {
data/assets/js/search.js CHANGED
@@ -123,7 +123,7 @@ function debounceSearch() {
123
123
  }, 400);
124
124
  }
125
125
 
126
- fetch('/search.json')
126
+ fetch(dataUrl)
127
127
  .then(function (response) {
128
128
  return response.json();
129
129
  })
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fenton-jekyll-boilerplate
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steve Fenton