Hi,
I would like to switch two modular folders in my markdown header depending on the screen size of the user.
I was wondering if there was any way to embed CSS directly into a markdown header, like media queries.
Not sure if I'm clear, basically I would like to have something like :
> ---
> title: Home
> content:
> items: '@self.modular'
> order:
> by: default
> dir: asc
> custom:
> - _showcase
> - _highlights
> - _news
> - _callout
> - _bottom
> @media only all and (max-width: 49.987em) {
> content:
> items: '@self.modular'
> order:
> by: default
> dir: asc
> custom:
> - _showcase
> - _highlights
> - _callout
> - _news
> - _bottom
> }
> menu: Home
> visible: false
> onpage_menu: false
> ---