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> |
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
<!-- This is how the HTML looks like in the actual email (client = Gmail) that is being sent. Note that the img tag has no ID or class anymore --> | |
<table border="0" cellpadding="0" cellspacing="0" width="630"> | |
<tbody><tr> | |
<td style="border-collapse:collapse"> | |
<div style="text-align:none"><img src="http://gallery.mailchimp.com/3062e101948bbd6014a7f3b0b/images/istanbul.launch.jpg" alt="" border="0" width="630" height="233"></div> | |
</td> | |
</tr> | |
</tbody></table> |
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
{% extends "base_generic.html" %} | |
{% block title %}{{ section.title }}{% endblock %} | |
{% block content %} | |
<h1>{{ section.title }}</h1> | |
{% for story in story_list %} | |
<h2> | |
<a href="{{ story.get_absolute_url }}"> |
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
// Source: | |
// https://gist.github.com/1087819 | |
// sbt 0.7.x | |
import sbt._ | |
trait Defaults extends BaseAndroidProject { | |
def androidPlatformName = "android-7" | |
// no proguarded needed! | |
override def skipProguard = true |
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
alert("Hello World!"); |