jekyll-theme-buttery-biscuit 0.2.2 → 0.3.1

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: beb17377129f4fd915a345fe42964ead96ce9160b21673bea1ad479ffc5b8c7b
4
- data.tar.gz: 8146d0c368d1b46c7340f2d34a32be0073d03bc67e7043c45e5a3a0ef8659bfe
3
+ metadata.gz: 5de6a72b982bf268295b197b0166ce6c60f01493d645a296a303f893912310dd
4
+ data.tar.gz: 8d8d4002efd4a0fd2035f63093cc8b5ba273908d8d9f68660c920f82faeab5f5
5
5
  SHA512:
6
- metadata.gz: '0291689afb0431e5451b23902e6c37c94945204590d6114477eedf146c5f95cb089f9e56f045bc354ec547a5d886ebc4068de5dd595ef6239677a4b9b1976005'
7
- data.tar.gz: c985e78ed22d7a03e5c2698e4cd83b73fb8f3bc027f1be2a8926b8b7f392e4a2bd17e72ee60732b61a1cf5a6208e87482642a622a994b88f2f42d5edb0df5c7c
6
+ metadata.gz: 60b586908039a65bf7e9e830401728430a7058f0affdd3091cf19756f856edd1a41f866c0f5c040f844704abeafd192150ab59853fdd67572b6960199cc7ab2e
7
+ data.tar.gz: 7c46bceadd9abac1758c3cb504dc4593a0bccba5af47e5616e5f929ff83eda080f8d895b1444c274f2da82d732aeca283174722469da4507a433cf2c8ccab156
data/_config.yml CHANGED
@@ -10,8 +10,8 @@ description: >- # this means to ignore newlines until "baseurl:"
10
10
  Write an awesome description for your new site here. You can edit this
11
11
  line in _config.yml. It will appear in your document head meta (for
12
12
  Google search results) and in your feed.xml site description.
13
- baseurl: "" # the subpath of your site, e.g. /blog
14
- url: "" # the base hostname & protocol for your site, e.g. http://example.com
13
+ baseurl: "/jekyll-theme-buttery-biscuit" # the subpath of your site, e.g. /blog
14
+ url: "lukeossevoort.github.io" # the base hostname & protocol for your site, e.g. http://example.com
15
15
  twitter_username: jekyllrb
16
16
  github_username: jekyll
17
17
 
@@ -23,12 +23,18 @@ plugins:
23
23
  - jekyll-spaceship
24
24
  - jekyll-seo-tag
25
25
  - jekyll-paginate
26
+ - jekyll_picture_tag
26
27
 
27
28
  buttery-biscuit:
28
29
  theme: default
29
30
  darkmode: dark
30
31
  fixed-navbar: false
31
32
 
33
+ picture:
34
+ source: "assets/img/fullsize"
35
+ output: "assets/img/generated"
36
+ nomarkdown: true
37
+
32
38
  exclude:
33
39
  - readme.md
34
40
 
@@ -1,8 +1,8 @@
1
1
  <nav class="nav is-vertical-align is-full-width no-print" id="navbar">
2
2
  <div class="nav-left hide-xs">
3
- <a class="brand" href="#">{{ site.title }}</a>
3
+ <a class="brand" href="{{ site.url }}{{ site.baseurl }}/">{{ site.title }}</a>
4
4
  {% for item in site.data.navigation %}
5
- <a href="{{ item.link }}" {% if page.url == item.link %}class="active"{% endif %}>
5
+ <a href="{{ site.baseurl }}{{ item.link }}" {% if page.url == item.link %}class="active"{% endif %}>
6
6
  {{ item.name }}
7
7
  </a>
8
8
  {% endfor %}
@@ -20,7 +20,7 @@
20
20
  </summary>
21
21
  <div class="card" style="padding-left: 0; padding-right: 0; margin-left: -30%;">
22
22
  {% for item in site.data.navigation %}
23
- <p><a href="{{ item.link }}" {% if page.url == item.link %}class="active"{% endif %}>
23
+ <p><a href="{{ site.baseurl }}{{ item.link }}" {% if page.url == item.link %}class="active"{% endif %}>
24
24
  {{ item.name }}
25
25
  </a></p>
26
26
  {% endfor %}
@@ -4,7 +4,7 @@
4
4
  <!-- Post heading -->
5
5
  <div class="row">
6
6
  <div class="col">
7
- <h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
7
+ <h1 style="margin-bottom: 0;"><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
8
8
  <p>
9
9
  Published {{ post.date | date: "%Y-%m-%d" }}
10
10
  {% for tag in post.tags %}
@@ -18,7 +18,7 @@
18
18
  <div class="row">
19
19
  {% if post.img %}
20
20
  <div class="col-4">
21
- <img src="{{ post.img }}">
21
+ {% picture feed "{{ post.img }}" %}
22
22
  </div>
23
23
  {% endif %}
24
24
 
data/_layouts/post.html CHANGED
@@ -7,7 +7,7 @@ layout: page
7
7
  <div class="col">
8
8
  <h1>{{ page.title }}</h1>
9
9
  {% if page.img %}
10
- <img src="{{ img }}">
10
+ {% picture postheader "{{ page.img }}" %}
11
11
  {% endif %}
12
12
  {{ content }}
13
13
  </div>
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-buttery-biscuit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luke Ossevoort
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-04-03 00:00:00.000000000 Z
11
+ date: 2023-09-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -80,6 +80,20 @@ dependencies:
80
80
  - - ">="
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: jekyll_picture_tag
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
83
97
  description:
84
98
  email:
85
99
  - luke@ossevoort.xyz
@@ -107,6 +121,8 @@ files:
107
121
  - _sass/themes/_dark.scss
108
122
  - _sass/themes/_default.scss
109
123
  - assets/css/main.scss
124
+ - assets/img/fullsize/squirrel.jpg
125
+ - assets/img/fullsize/superb-fairywren.jpg
110
126
  - assets/js/darkmode.js
111
127
  - assets/js/fixednavbar.js
112
128
  - readme.md