diff --git a/_config.yml b/_config.yml index 60d2299a8b77..160cae78498e 100644 --- a/_config.yml +++ b/_config.yml @@ -28,6 +28,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 # ----------------------------------------------------------------------------- @@ -69,8 +71,6 @@ wikidata_id: # your wikidata id dblp_url: # your DBLP profile url stackoverflow_id: #your stackoverflow id -rss_icon: true - contact_note: > You can even add a little note about which of these is the best way to reach you. @@ -238,7 +238,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 fc01325a89ae..594b1a595069 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);