forked from alshedivat/al-folio
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Better SEO, OpenGraph, schema.org and clean generated code (alshediva…
- Loading branch information
Showing
30 changed files
with
879 additions
and
521 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,16 @@ | ||
{% assign path = include.path | remove: ".jpg" | remove: ".jpeg" | remove: ".png" | remove: ".tiff" %} | ||
{%- assign path = include.path | remove: ".jpg" | remove: ".jpeg" | remove: ".png" | remove: ".tiff" -%} | ||
|
||
<figure> | ||
|
||
<picture> | ||
{% for i in site.imagemagick.widths %} | ||
<source media="(max-width: {{ i }}px)" srcset="{{ path | relative_url }}-{{ i }}.webp"> | ||
{% endfor %} | ||
{% for i in site.imagemagick.widths -%} | ||
<source media="(max-width: {{ i }}px)" srcset="{{ path | relative_url }}-{{ i }}.webp" /> | ||
{% endfor -%} | ||
|
||
<!-- Fallback to the original file --> | ||
<img {% if include.class %}class="{{ include.class }}"{% endif %} src="{{ include.path | relative_url }}" {% if include.alt %}alt="{{ alt }}"{% endif %} {% if include.title %}title="{{ title }}"{% endif %} {% if include.zoomable %}data-zoomable{% endif %} /> | ||
|
||
</picture> | ||
|
||
{% if include.caption %}<figcaption class="caption">{{ include.caption }}</figcaption>{% endif %} | ||
{%- if include.caption -%}<figcaption class="caption">{{ include.caption }}</figcaption>{%- endif %} | ||
|
||
</figure> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,25 @@ | ||
{% if site.footer_fixed %} | ||
<footer class="fixed-bottom"> | ||
<div class="container mt-0"> | ||
© Copyright {{ site.time | date: '%Y' }} {{ site.first_name }} {{ site.middle_name }} {{ site.last_name }}. | ||
{{ site.footer_text }} | ||
{% if site.impressum_path %} | ||
<a href="{{ site.url }}{{ site.baseurl }}{{ site.impressum_path }}">Impressum</a>. | ||
{% endif %} | ||
{% if site.last_updated %} | ||
Last updated: {{ "now" | date: '%B %d, %Y' }}. | ||
{% endif %} | ||
</div> | ||
</footer> | ||
{% else %} | ||
<footer class="sticky-bottom mt-5"> | ||
<div class="container"> | ||
© Copyright {{ site.time | date: '%Y' }} {{ site.first_name }} {{ site.middle_name }} {{ site.last_name }}. | ||
{{ site.footer_text }} | ||
{% if site.impressum_path %} | ||
<a href="{{ site.url }}{{ site.baseurl }}{{ site.impressum_path }}">Impressum</a>. | ||
{% endif %} | ||
{% if site.last_updated %} | ||
Last updated: {{ "now" | date: '%B %d, %Y' }}. | ||
{% endif %} | ||
</div> | ||
</footer> | ||
{% endif %} | ||
{% if site.footer_fixed %} | ||
<footer class="fixed-bottom"> | ||
<div class="container mt-0"> | ||
© Copyright {{ site.time | date: '%Y' }} {{ site.first_name }} {{ site.middle_name }} {{ site.last_name }}. {{ site.footer_text }} | ||
{%- if site.impressum_path -%} | ||
<a href="{{ site.url }}{{ site.baseurl }}{{ site.impressum_path }}">Impressum</a>. | ||
{%- endif -%} | ||
{%- if site.last_updated -%} | ||
Last updated: {{ "now" | date: '%B %d, %Y' }}. | ||
{%- endif %} | ||
</div> | ||
</footer> | ||
{%- else -%} | ||
<footer class="sticky-bottom mt-5"> | ||
<div class="container"> | ||
© Copyright {{ site.time | date: '%Y' }} {{ site.first_name }} {{ site.middle_name }} {{ site.last_name }}. {{ site.footer_text }} | ||
{%- if site.impressum_path -%} | ||
<a href="{{ site.url }}{{ site.baseurl }}{{ site.impressum_path }}">Impressum</a>. | ||
{%- endif -%} | ||
{%- if site.last_updated -%} | ||
Last updated: {{ "now" | date: '%B %d, %Y' }}. | ||
{%- endif %} | ||
</div> | ||
</footer> | ||
{%- endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.