Created
July 5, 2021 16:52
-
-
Save bestie/3aa0190953ffe35dcffdfa463fd1c38e to your computer and use it in GitHub Desktop.
A Rack app for rick rollin'
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
body = <<~HTML | |
<html> | |
<body> | |
<div class="tenor-gif-embed" data-postid="12136175" data-share-method="host" data-width="100%" data-aspect-ratio="1.4777448071216617"><a href="https://tenor.com/view/rick-ashley-dance-80s-music-gif-12136175">Rick Ashley Dance GIF</a> from <a href="https://tenor.com/search/rickashley-gifs">Rickashley GIFs</a></div><script type="text/javascript" async src="https://tenor.com/embed.js"></script> | |
</body> | |
</html> | |
HTML | |
app = ->(env) { | |
[ | |
200, | |
{ | |
"Content-Type" => "text/html; charset=utf-8", | |
}, | |
[body], | |
] | |
} | |
run app |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment