* First pass: Unfurling of Slack links * Add authentication in db * Call associate on Event correctly * Add SLACK_APP_ID, remove SLACK_REDIRECT_URI, tidy env sample * PR feedback * Comment clarify
33 lines
502 B
HTML
33 lines
502 B
HTML
<!doctype html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>Outline</title>
|
|
<meta name="slack-app-id" content="<%= SLACK_APP_ID %>" />
|
|
<style>
|
|
body,
|
|
html {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
#root {
|
|
flex: 1;
|
|
min-height: 100vh;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root"></div>
|
|
<script src="//d2wy8f7a9ursnm.cloudfront.net/bugsnag-3.min.js" data-apikey="<%= BUGSNAG_KEY %>"></script>
|
|
</body>
|
|
|
|
</html>
|