Created
February 5, 2016 22:58
-
-
Save MariuszWisniewski/00cd7306efca263fb873 to your computer and use it in GitHub Desktop.
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
| 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