jekyll-theme-buttery-biscuit 0.3.1 → 0.3.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: 5de6a72b982bf268295b197b0166ce6c60f01493d645a296a303f893912310dd
4
- data.tar.gz: 8d8d4002efd4a0fd2035f63093cc8b5ba273908d8d9f68660c920f82faeab5f5
3
+ metadata.gz: 8c89b13e1b910eb78d535a2326856828d23b93dcc1b089fad15978d34316765d
4
+ data.tar.gz: df99b81069b1968b364863659c1a58b39354d63316096524035a7daf9cc91518
5
5
  SHA512:
6
- metadata.gz: 60b586908039a65bf7e9e830401728430a7058f0affdd3091cf19756f856edd1a41f866c0f5c040f844704abeafd192150ab59853fdd67572b6960199cc7ab2e
7
- data.tar.gz: 7c46bceadd9abac1758c3cb504dc4593a0bccba5af47e5616e5f929ff83eda080f8d895b1444c274f2da82d732aeca283174722469da4507a433cf2c8ccab156
6
+ metadata.gz: d4dc5ec538126e83a900cfcfec95fc068bca45d49ecfd1f8273ad363f6c596d818240eec6d17dc20c7633ccc776ec682f3096ba46552a489d8a3bb46026d4127
7
+ data.tar.gz: 47d7a9850e51be1341f217b295a18f90eebd8d01668f9db62ff49e242ff457d3ad1b2320ac2174985045b024deee855d8e346607a59360a53be18ef9eb81e38a
data/_config.yml CHANGED
@@ -4,7 +4,7 @@
4
4
  # You can create any custom variable you would like, and they will be accessible
5
5
  # in the templates via {{ site.myvariable }}.
6
6
 
7
- title: Your awesome title
7
+ title: Buttery Biscuit
8
8
  email: your-email@example.com
9
9
  description: >- # this means to ignore newlines until "baseurl:"
10
10
  Write an awesome description for your new site here. You can edit this
@@ -6,7 +6,10 @@
6
6
  <div class="col">
7
7
  <h1 style="margin-bottom: 0;"><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
8
8
  <p>
9
- Published {{ post.date | date: "%Y-%m-%d" }}
9
+ {% if post.author %}
10
+ By {{ post.author }} &emsp;
11
+ {% endif %}
12
+ Published {{ post.date | date: "%Y-%m-%d" }} &emsp;
10
13
  {% for tag in post.tags %}
11
14
  <span class="tag">{{ tag }}</span>
12
15
  {% endfor %}
@@ -18,7 +21,11 @@
18
21
  <div class="row">
19
22
  {% if post.img %}
20
23
  <div class="col-4">
21
- {% picture feed "{{ post.img }}" %}
24
+ {% if post.cropkeep %}
25
+ {% picture "{{ post.img }}" 3:2 {{ post.cropkeep }} %}
26
+ {% else %}
27
+ {% picture "{{ post.img }}" %}
28
+ {% endif %}
22
29
  </div>
23
30
  {% endif %}
24
31
 
data/_layouts/post.html CHANGED
@@ -5,10 +5,27 @@ layout: page
5
5
 
6
6
  <div class="row">
7
7
  <div class="col">
8
- <h1>{{ page.title }}</h1>
9
- {% if page.img %}
10
- {% picture postheader "{{ page.img }}" %}
11
- {% endif %}
12
- {{ content }}
8
+ <article>
9
+ <h1>{{ page.title }}</h1>
10
+ <p>
11
+ {% if page.author %}
12
+ By {{ page.author }} &emsp;
13
+ {% endif %}
14
+ {% if page.date %}
15
+ Published {{ page.date | date: "%Y-%m-%d" }} &emsp;
16
+ {% endif %}
17
+ {% for tag in page.tags %}
18
+ <span class="tag">{{ tag }}</span>
19
+ {% endfor %}
20
+ </p>
21
+ {% if page.img %}
22
+ {% if page.cropkeep %}
23
+ {% picture postheader "{{ page.img }}" 3:2 {{ page.cropkeep }} %}
24
+ {% else %}
25
+ {% picture postheader "{{ page.img }}" %}
26
+ {% endif %}
27
+ {% endif %}
28
+ {{ content }}
29
+ </article>
13
30
  </div>
14
31
  </div>
@@ -1,3 +1,12 @@
1
1
  .paginateindex {
2
2
  padding: 0 2px;
3
3
  }
4
+
5
+ // Built in option to print in 2 columns
6
+ @media print {
7
+ .twocolprint {
8
+ column-count: 2;
9
+ -webkit-column-count: 2;
10
+ -moz-column-count: 2;
11
+ }
12
+ }
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.3.1
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luke Ossevoort
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-13 00:00:00.000000000 Z
11
+ date: 2024-02-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -94,7 +94,7 @@ dependencies:
94
94
  - - ">="
95
95
  - !ruby/object:Gem::Version
96
96
  version: '0'
97
- description:
97
+ description:
98
98
  email:
99
99
  - luke@ossevoort.xyz
100
100
  executables: []
@@ -130,7 +130,7 @@ homepage: https://github.com/LukeOssevoort/jekyll-theme-buttery-biscuit
130
130
  licenses:
131
131
  - MIT
132
132
  metadata: {}
133
- post_install_message:
133
+ post_install_message:
134
134
  rdoc_options: []
135
135
  require_paths:
136
136
  - lib
@@ -145,8 +145,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
145
145
  - !ruby/object:Gem::Version
146
146
  version: '0'
147
147
  requirements: []
148
- rubygems_version: 3.2.5
149
- signing_key:
148
+ rubygems_version: 3.3.15
149
+ signing_key:
150
150
  specification_version: 4
151
151
  summary: A Jekyll theme that acts as a base, a buttery biscuit base.
152
152
  test_files: []