10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# File 'lib/contentful/bootstrap/server.rb', line 10
def render
" <html><head>\n <link rel=\"shortcut icon\" type=\"image/png\" href=\"https://www.contentful.com/assets/images/favicons/favicon-47dc5f9d.png\"/>\n <link rel=\"shortcut icon\" type=\"image/png\" href=\"https://www.contentful.com/assets/images/favicons/favicon-47dc5f9d.png\"/>\n </head><body>\n <script type=\"text/javascript\">\n (function() {\n var access_token = window.location.hash.split('&')[0].split('=')[1];\n window.location.replace('http://localhost:5123/save_token?token=' + access_token);\n })();\n </script>\n </body></html>\n JS\nend\n"
|