Skip to content

Commit e653206

Browse files
committed
Merge remote-tracking branch 'origin/upstream'
# Conflicts: # CUSTOMIZE.md # INSTALL.md
2 parents 50e3b0e + afc3496 commit e653206

File tree

6 files changed

+41
-41
lines changed

6 files changed

+41
-41
lines changed

Gemfile.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ GEM
5252
rexml
5353
csl-styles (1.0.1.11)
5454
csl (~> 1.0)
55-
css_parser (1.21.0)
55+
css_parser (1.21.1)
5656
addressable
5757
cssminify2 (2.0.1)
5858
csv (3.3.2)
@@ -79,19 +79,19 @@ GEM
7979
forwardable (1.3.3)
8080
forwardable-extended (2.6.0)
8181
gemoji (4.1.0)
82-
google-protobuf (4.29.3)
82+
google-protobuf (4.30.0)
8383
bigdecimal
8484
rake (>= 13)
85-
google-protobuf (4.29.3-aarch64-linux)
85+
google-protobuf (4.30.0-aarch64-linux)
8686
bigdecimal
8787
rake (>= 13)
88-
google-protobuf (4.29.3-arm64-darwin)
88+
google-protobuf (4.30.0-arm64-darwin)
8989
bigdecimal
9090
rake (>= 13)
91-
google-protobuf (4.29.3-x86_64-darwin)
91+
google-protobuf (4.30.0-x86_64-darwin)
9292
bigdecimal
9393
rake (>= 13)
94-
google-protobuf (4.29.3-x86_64-linux)
94+
google-protobuf (4.30.0-x86_64-linux)
9595
bigdecimal
9696
rake (>= 13)
9797
html-pipeline (2.14.3)

_includes/figure.liquid

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,22 @@
1414
https://developer.mozilla.org/en-US/docs/Learn/HTML/Multimedia_and_embedding/Responsive_images for info on defining 'sizes' for responsive images
1515
-->
1616
{% if site.imagemagick.enabled %}
17-
<source
18-
class="responsive-img-srcset"
19-
{% if ext == 'gif' or ext == 'jpeg' or ext == 'jpg' or ext == 'png' or ext == 'tiff' %}
20-
srcset="{% for i in site.imagemagick.widths %}{{ img_path | relative_url }}-{{ i }}.webp {{ i }}w,{% endfor %}"
21-
type="image/webp"
22-
{% else %}
23-
srcset="{{ include.path | relative_url }}"
24-
{% endif %}
25-
{% if include.sizes %}
26-
sizes="{{ include.sizes }}"
27-
{% else %}
28-
sizes="95vw"
29-
{% endif %}
30-
>
17+
{% unless include.avoid_scaling %}
18+
<source
19+
class="responsive-img-srcset"
20+
{% if ext == 'gif' or ext == 'jpeg' or ext == 'jpg' or ext == 'png' or ext == 'tiff' %}
21+
srcset="{% for i in site.imagemagick.widths %}{{ img_path | relative_url }}-{{ i }}.webp {{ i }}w,{% endfor %}"
22+
type="image/webp"
23+
{% else %}
24+
srcset="{{ include.path | relative_url }}"
25+
{% endif %}
26+
{% if include.sizes %}
27+
sizes="{{ include.sizes }}"
28+
{% else %}
29+
sizes="95vw"
30+
{% endif %}
31+
>
32+
{% endunless %}
3133
{% endif %}
3234
<img
3335
src="{% if include.url %}{{ include.url }}{% elsif include.cache_bust %}{{ include.path | relative_url | bust_file_cache }}{% else %}{{ include.path | relative_url }}{% endif %}"

_includes/footer.liquid

Lines changed: 15 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
1+
{% capture footer_contents %}
2+
&copy; Copyright {{ site.time | date: '%Y' }}
3+
{{ site.first_name }}
4+
{{ site.middle_name }}
5+
{{ site.last_name }}. {{ site.footer_text }}
6+
{% if site.impressum_path %}
7+
<a href="{{ site.url }}{{ site.baseurl }}{{ site.impressum_path }}">Impressum</a>.
8+
{% endif %}
9+
{% if site.last_updated %}
10+
Last updated: {{ 'now' | date: '%B %d, %Y' }}.
11+
{% endif %}
12+
{% endcapture %}
13+
114
{% if site.footer_fixed %}
215
<footer class="fixed-bottom" role="contentinfo">
316
<div class="container mt-0">
4-
&copy; Copyright {{ site.time | date: '%Y' }}
5-
{{ site.first_name }}
6-
{{ site.middle_name }}
7-
{{ site.last_name }}. {{ site.footer_text }}
8-
{% if site.impressum_path %}
9-
<a href="{{ site.url }}{{ site.baseurl }}{{ site.impressum_path }}">Impressum</a>.
10-
{% endif %}
11-
{% if site.last_updated %}
12-
Last updated: {{ 'now' | date: '%B %d, %Y' }}.
13-
{% endif %}
17+
{{ footer_contents }}
1418
</div>
1519
</footer>
1620
{% else %}
@@ -20,16 +24,7 @@
2024
{% endif %}
2125

2226
<div class="container">
23-
&copy; Copyright {{ site.time | date: '%Y' }}
24-
{{ site.first_name }}
25-
{{ site.middle_name }}
26-
{{ site.last_name }}. {{ site.footer_text }}
27-
{% if site.impressum_path %}
28-
<a href="{{ site.url }}{{ site.baseurl }}{{ site.impressum_path }}">Impressum</a>.
29-
{% endif %}
30-
{% if site.last_updated %}
31-
Last updated: {{ 'now' | date: '%B %d, %Y' }}.
32-
{% endif %}
27+
{{ footer_contents }}
3328
</div>
3429
</footer>
3530
{% endif %}

_layouts/bib.liquid

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
sizes = "200px"
3838
class="preview z-depth-1 rounded"
3939
zoomable=true
40+
avoid_scaling=true
4041
alt=entry.preview
4142
%}
4243
{% endif %}

_sass/_themes.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
@use "sass:color";
66

77
:root {
8+
color-scheme: light;
89
--global-bg-color: #{$white-color};
910
--global-code-bg-color: #{$code-bg-color-light};
1011
--global-text-color: #{$black-color};
@@ -76,6 +77,7 @@
7677
}
7778

7879
html[data-theme="dark"] {
80+
color-scheme: dark;
7981
--global-bg-color: #{$grey-color-dark};
8082
--global-code-bg-color: #{$code-bg-color-dark};
8183
--global-text-color: #{$grey-color-light};

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# this file uses prebuilt image in dockerhub
22
services:
33
jekyll:
4-
image: amirpourmand/al-folio:v0.14.0
4+
image: amirpourmand/al-folio:v0.14.2
55
build: .
66
# uncomment these if you are having this issue with the build:
77
# /usr/local/bundle/gems/jekyll-4.3.4/lib/jekyll/site.rb:509:in `initialize': Permission denied @ rb_sysopen - /srv/jekyll/.jekyll-cache/.gitignore (Errno::EACCES)

0 commit comments

Comments
 (0)