Skip to content

Instantly share code, notes, and snippets.

@poul-kg
Created December 1, 2016 12:01
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 poul-kg/fa28c28a14460e01de33285f85a53d95 to your computer and use it in GitHub Desktop.
Save poul-kg/fa28c28a14460e01de33285f85a53d95 to your computer and use it in GitHub Desktop.
Semantic UI Twig Template
<div class="bg">
<div class="bg-img" style="background-image: url({{page.backgroundImageUrl}});"></div>
</div>
<div class="ui two column stackable grid container">
<!-- Text Column -->
<div class="column">
<h1>{{page.title}}</h1>
{% if page.text is iterable %}
{% for paragraph in page.text %}
<p>{{paragraph|raw}}</p>
{% endfor %}
{% else %}
<p>{{page.text|raw}}</p>
{% endif %}
</div>
<!-- Image Column -->
<div class="column center aligned">
<img src="{{page.imageUrl}}" alt="color city">
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment