Last active
August 29, 2015 14:13
-
-
Save DeskWOW/7a791ddee4e776eea492 to your computer and use it in GitHub Desktop.
Barebones reply theme with no history
This file contains hidden or 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
| {% assign emails = case.emails %}{% assign threadlength = emails.size|minus:1 %} {% for email in emails reversed %}{% if forloop.first %}{{email.new_html}}{% if email.agent %}{% if email.agent.signature %}<div style="margin-top:10px;">{{email.agent.signature | newline_to_br}}</div>{% else %}<p>--<br/>{{email.agent.signature | newline_to_br}} | |
| <br /></p>{% endif %}{% endif %}{% endif %}{% endfor %} |
This file contains hidden or 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
| {% assign emails = case.emails %}{% assign threadlength = emails.size|minus:1 %}{% for email in emails reversed %}{% if forloop.first %}{{email.new_text}}{% if email.agent %} | |
| -- | |
| {% if email.agent.signature %}{{email.agent.signature | strip_html }}{% else %}{{email.agent.name_public}}{% endif %}{% endif %}{% endif %}{% endfor %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment