Created
December 1, 2016 12:01
-
-
Save poul-kg/fa28c28a14460e01de33285f85a53d95 to your computer and use it in GitHub Desktop.
Semantic UI Twig Template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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