Skip to content

Instantly share code, notes, and snippets.

View neerfix's full-sized avatar
🦜
Work at @cospirit

Nicolas Notararigo neerfix

🦜
Work at @cospirit
View GitHub Profile
@mathieu-coingt
mathieu-coingt / .github-workflows-main.yaml
Last active November 13, 2023 02:00
Github Actions Workflow for Symfony project
# .github/worflow/main.yaml
name: CI/CD production
on:
push:
branches: [ production ]
jobs:
build:
runs-on: ubuntu-latest
steps:
@Polkovn1k
Polkovn1k / adaptive_img.html
Last active March 17, 2023 18:56
Adaptive img (HTML)
<picture>
<source type="image/webp" media="(min-width: 1250px)" srcset="img/desktop@x1.webp 1x, img/desktop@x2.webp 2x">
<source type="image/webp" media="(min-width: 768px)" srcset="img/tablet@x1.webp 1x, img/tablet@x2.webp 2x">
<source type="image/webp" srcset="img/mobile@x1.webp 1x, img/mobile@x2.webp 2x">
<source media="(min-width: 1250px)" srcset="img/desktop@x1.jpg 1x, img/desktop@x2.jpg 2x">
<source media="(min-width: 768px)" srcset="img/tablet@x1.jpg 1x, img/tablet@x2.jpg 2x">
<img src="img/mobile@x1.jpg" srcset="img/mobile@x1.jpg 1x, img/mobile@x2.jpg 2x" alt="" title="">
</picture>