lowcodelounge / plain-vanilla-gh-pages

Free, easy, low-tech website template using GitHub Pages
https://lowcodelounge.github.io/plain-vanilla-gh-pages/
The Unlicense
3 stars 0 forks source link

Use default instead of conditional for layout classes #31

Open pglevy opened 1 year ago

pglevy commented 1 year ago

This

{{ page.body-style  | default: 'p-3' }}

Instead of this

{% if page.body-style %}{{ page.body-style }}{% else %}p-3{% endif %}