Skip to content

Instantly share code, notes, and snippets.

@Joachimaus
Created February 28, 2020 01:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Joachimaus/092d1aaf188f43f36c33a07d315b55bd to your computer and use it in GitHub Desktop.
Save Joachimaus/092d1aaf188f43f36c33a07d315b55bd to your computer and use it in GitHub Desktop.
{% if page.meta_image_url.size > 0 %}
<style>
#tinted-background-{{ page.id }} {
background: url({{ page.meta_image_url }}) no-repeat center center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
</style>
{% endif %}
<section class="full_width_feature clearfix">
<div class="tinted-background" id="tinted-background-{{ page.id }}"></div>
<div class="container h-100">
<div class="row align-items-center h-100">
<div class="col-md-12 col-lg-6">
<div class="border-left pl-4">
<h1 class="text-white">{{ page.basic.content | strip_html }}</h1>
</div>
</div>
</div>
</div>
</section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment