forked from daattali/shiny-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (88 loc) · 2.42 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html>
<head>
<title>Welcome to Dean Attali's mini site!</title>
<style type="text/css">
body, html {
font-family: Helvetica, Arial, sans-serif;
background-color: #F5F5F5;
color: #114;
margin: 0;
padding: 0;
}
a {
text-decoration: none;
color: #0000EE;
}
a:hover {
text-decoration: underline;
}
#titleBar {
height: 80px;
background-color: #3475b4;
overflow: hidden;
border-bottom: 1px solid #3475b3;
-moz-box-shadow: 0px 0px 10px 3px #BBC;
-webkit-box-shadow: 0px 0px 10px 3px #BBC;
box-shadow: 0px 0px 10px 3px #BBC;
}
#titleBar #container {
margin-top: 14px;
}
#titleBar h1 {
margin: 0 auto .5em auto;
padding: .2em;
color: #EEE;
text-align: center;
}
#outer-content {
max-width: 910px;
margin-left: auto;
margin-right: auto;
}
#content {
margin: 1em auto 1em auto;
float: left;
font-size: 1.3em;
}
</style>
</head>
<body>
<div id="titleBar">
<div id="container">
<h1>Welcome to Dean Attali's DigitalOcean droplet!</h1>
</div>
</div>
<div id="outer-content">
<div id="content">
<p>You're probably looking for either
<a href="./shiny"><strong>my Shiny Server</strong></a>
or
<a href="http://deanattali.com"><strong>my real website (deanattali.com)</strong></a>.
</p>
<p>
If you want to host a Shiny Server/RStudio Server yourself,
<a href="http://deanattali.com/2015/05/09/setup-rstudio-shiny-server-digital-ocean/">I wrote a popular tutorial for that</a>!
</p>
<p>
<a href="./rstudio">My RStudio Server</a> (only a few people have a login)
</p>
<!--
<p>Or
<a href="http://daattali.com:8080/health">monitor this server's health</a>.
</p>
-->
<br/>
<p>Thanks for stopping by :)</p>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-59820529-4', 'auto');
ga('send', 'pageview');
</script>
</div>
</div>
</body>
</html>