Skip to content

Instantly share code, notes, and snippets.

@MariuszWisniewski
Created February 5, 2016 22:58
Show Gist options
  • Save MariuszWisniewski/00cd7306efca263fb873 to your computer and use it in GitHub Desktop.
Save MariuszWisniewski/00cd7306efca263fb873 to your computer and use it in GitHub Desktop.
content = "<html>\
<head>\
</head>\
<body>\
<p>Welcome from Syncano Webhook!</p>\
<p><a href=\"https://www.syncano.io/\">Visit our website</a></p>\
<p>You're inside an instance named {instance}</p>\
<p>Watch \"Stop Building the Backend\" talk by our Developer Evangelist Kelly Andrews</p>\
<p><iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/zKLMc4ZoQJo\" frameborder=\"0\" allowfullscreen></iframe></p>\
</body>\
</html>".format(instance=META['instance']);
response = HttpResponse(status_code=200, content=content, content_type='text/html')
set_response(response)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment