liebling/partials/hero.hbs

32 lines
849 B
Handlebars
Raw Normal View History

2019-04-14 18:41:25 +00:00
{{!--
If the template in question has a background image, then we render responsive image styles
for it, and apply those styles to the <header> tag.
--}}
2019-02-24 21:06:24 +00:00
{{#if background}}
2019-03-12 10:39:01 +00:00
{{#contentFor "herobackground"}}
<style>
2019-02-24 21:06:24 +00:00
.m-hero__picture {
background-image: url({{img_url background size='xl'}});
}
@media(max-width: 1000px) {
.m-hero__picture {
background-image: url({{img_url background size='l'}});
}
}
@media(max-width: 600px) {
.m-hero__picture {
background-image: url({{img_url background size='m'}});
}
}
</style>
2019-03-12 10:39:01 +00:00
{{/contentFor}}
2019-02-24 21:06:24 +00:00
2019-10-06 14:14:16 +00:00
<section class="m-hero with-picture" data-aos="fade">
2019-10-03 15:07:33 +00:00
<div class="m-hero__picture in-post {{#is "post"}}in-post{{/is}}"></div>
2019-02-24 21:06:24 +00:00
{{else}}
2019-10-06 14:14:16 +00:00
<section class="m-hero no-picture {{#is "post"}}in-post{{/is}}" data-aos="fade">
2019-02-24 21:06:24 +00:00
{{/if}}