Skip to content

Instantly share code, notes, and snippets.

@rogeruiz
Created March 30, 2012 19:45
Show Gist options
  • Select an option

  • Save rogeruiz/2254394 to your computer and use it in GitHub Desktop.

Select an option

Save rogeruiz/2254394 to your computer and use it in GitHub Desktop.
Is your Content Strategy leaving things out?
{% if editorial.type_id == 2 %}
{% if editorial.content|length > editorial.summary|length %}
<p class="full-content">{{ editorial.content|raw }}</p>
{% else %}
<p class="full-content">{{ editorial.summary|raw }}</p>
{% endif %}
{% else %}
<p class="full-content">{{ editorial.summary|raw }}</p>
{% endif %}
@rogeruiz

Copy link
Copy Markdown
Author

Outputs the longer of the two inputs.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment