Compare commits

...

1 Commits

Author SHA1 Message Date
iGor milhit 480290f589
css: replace value by a pico variable
- Replaces a spacing value in the medias SCSS file by the pico variable.
- Fixes the IDs of the personal and professional contact headers, to
  ease linking.
- Rewrite the indentation of a shortcode.

Co-Authored-by: iGor milhit <igor@milhit.ch>
2024-10-31 12:14:45 +01:00
3 changed files with 10 additions and 10 deletions

View File

@ -1,4 +1,4 @@
<h2 id="contactsPriv">{{ i18n "contactsPriv" }}</h2>
<h2 id="contacts-priv">{{ i18n "contactsPriv" }}</h2>
<dl class="home-lists">
{{ with .Site.Params.contactsPriv.email }}
<dt>{{ i18n "e-mail" }}</dt>

View File

@ -1,4 +1,4 @@
<h2 id="contactsPro">{{ i18n "contactsPro" }}</h2>
<h2 id="contacts-pro">{{ i18n "contactsPro" }}</h2>
<dl class="home-lists">
{{ with .Site.Params.contactsPro.email }}
<dt>{{ i18n "e-mail" }}</dt>

View File

@ -1,10 +1,10 @@
<figure class="stream">
<figcaption><p>{{ .Get "legend" }}</p></figcaption>
<audio controls>
<source src="https://id-libre.org/live/stream.ogg" type="audio/ogg">
<source src="https://id-libre.org/live/stream.mp3" type="audio/mpeg">
{{ i18n "audioDownload" }} <a href="https://id-libre.org/live/stream.mp3">
{{ i18n "thisLink" }}
</a>
</audio>
<figcaption><p>{{ .Get "legend" }}</p></figcaption>
<audio controls>
<source src="https://id-libre.org/live/stream.ogg" type="audio/ogg">
<source src="https://id-libre.org/live/stream.mp3" type="audio/mpeg">
{{ i18n "audioDownload" }} <a href="https://id-libre.org/live/stream.mp3">
{{ i18n "thisLink" }}
</a>
</audio>
</figure>