Skip to content

Instantly share code, notes, and snippets.

@rogeruiz
Created March 30, 2012 19:45
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 rogeruiz/2254394 to your computer and use it in GitHub Desktop.
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
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