diff --git a/_config.yml b/_config.yml index e2518d493909..b2f64c7f3ad2 100644 --- a/_config.yml +++ b/_config.yml @@ -25,6 +25,8 @@ impressum_path: # set to path to include impressum link in the footer, use the # will use title and url fields # Take a look to https://github.com/jekyll/jekyll-feed for more customization +rss_icon: true + # ----------------------------------------------------------------------------- # Layout # ----------------------------------------------------------------------------- @@ -233,7 +235,7 @@ imagemagick: - 800 - 1400 input_directories: - - assets/img + - assets/img/ input_formats: - ".jpg" - ".jpeg" diff --git a/_includes/figure.html b/_includes/figure.html index 1ab941d6e80a..c3d931a98bd4 100644 --- a/_includes/figure.html +++ b/_includes/figure.html @@ -8,7 +8,8 @@ {% endfor -%} - + + {%- if include.caption -%}
{{ include.caption }}
{%- endif %} diff --git a/_layouts/about.html b/_layouts/about.html index 7490c6b16063..b23496d2b1a2 100644 --- a/_layouts/about.html +++ b/_layouts/about.html @@ -18,7 +18,8 @@

{%- assign profile_image_path = page.profile.image | prepend: 'assets/img/' -%} {% include figure.html path=profile_image_path - class="img-fluid z-dept-1 rounded" -%} + class="img-fluid z-dept-1 rounded" + alt=page.profile.image -%} {% endif -%} {%- if page.profile.address %}
diff --git a/_sass/_base.scss b/_sass/_base.scss index f5b32352c008..1c63c8bb6ef1 100644 --- a/_sass/_base.scss +++ b/_sass/_base.scss @@ -23,6 +23,10 @@ a, table.table a { } } +figure, img { + max-width: 90vw; +} + blockquote { background: var(--global-bg-color); border-left: 2px solid var(--global-theme-color);