mirror of
https://github.com/soapingtime/diyhrt.git
synced 2026-09-04 20:10:19 +02:00
[automated] update groups.io wiki
This commit is contained in:
+265
@@ -2304,6 +2304,94 @@ body.dark-mode {
|
||||
}
|
||||
|
||||
|
||||
.d-flex {
|
||||
display: -webkit-box !important;
|
||||
display: -ms-flexbox !important;
|
||||
display: flex !important;
|
||||
}
|
||||
|
||||
.flex-column {
|
||||
-webkit-box-orient: vertical !important;
|
||||
-webkit-box-direction: normal !important;
|
||||
-ms-flex-direction: column !important;
|
||||
flex-direction: column !important;
|
||||
}
|
||||
|
||||
/* -------------------------------------------------------------------------- */
|
||||
/* Flex */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
.flex-center {
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
-webkit-box-pack: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.flex-between-center {
|
||||
-webkit-box-pack: justify;
|
||||
-ms-flex-pack: justify;
|
||||
justify-content: space-between;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.flex-end-center {
|
||||
-webkit-box-pack: end;
|
||||
-ms-flex-pack: end;
|
||||
justify-content: flex-end;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.flex-between-end {
|
||||
-webkit-box-align: end;
|
||||
-ms-flex-align: end;
|
||||
align-items: flex-end;
|
||||
-webkit-box-pack: justify;
|
||||
-ms-flex-pack: justify;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.flex-1 {
|
||||
-webkit-box-flex: 1;
|
||||
-ms-flex: 1;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.align-items-start {
|
||||
-webkit-box-align: start !important;
|
||||
-ms-flex-align: start !important;
|
||||
align-items: flex-start !important;
|
||||
}
|
||||
|
||||
.align-items-end {
|
||||
-webkit-box-align: end !important;
|
||||
-ms-flex-align: end !important;
|
||||
align-items: flex-end !important;
|
||||
}
|
||||
|
||||
.align-items-center {
|
||||
-webkit-box-align: center !important;
|
||||
-ms-flex-align: center !important;
|
||||
align-items: center !important;
|
||||
}
|
||||
|
||||
.align-items-baseline {
|
||||
-webkit-box-align: baseline !important;
|
||||
-ms-flex-align: baseline !important;
|
||||
align-items: baseline !important;
|
||||
}
|
||||
|
||||
.align-items-stretch {
|
||||
-webkit-box-align: stretch !important;
|
||||
-ms-flex-align: stretch !important;
|
||||
align-items: stretch !important;
|
||||
}
|
||||
|
||||
|
||||
th {
|
||||
font-weight: normal;
|
||||
@@ -5163,6 +5251,18 @@ body.app .navbar-fixed-top {
|
||||
margin-right: 0px !important;
|
||||
}
|
||||
|
||||
.mt-1 {
|
||||
margin-top: 15px !important;
|
||||
}
|
||||
|
||||
.mb-1 {
|
||||
margin-bottom: 15px !important;
|
||||
}
|
||||
|
||||
.my-1 {
|
||||
margin-top: 15px !important;
|
||||
margin-bottom: 15px !important;
|
||||
}
|
||||
.pt-0 {
|
||||
padding-top: 0px !important;
|
||||
}
|
||||
@@ -5210,6 +5310,171 @@ body.app .navbar-fixed-top {
|
||||
padding-right: 15px !important;
|
||||
}
|
||||
|
||||
/* -------------------------------------------------------------------------- */
|
||||
/* Dropzone */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
.dropzone {
|
||||
position: relative;
|
||||
background-color: #fff;
|
||||
border: 0;
|
||||
background-color: transparent;
|
||||
border-radius: 0.375rem;
|
||||
}
|
||||
|
||||
.dropzone.dropzone-has-default .dz-message {
|
||||
border-color: transparent;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
|
||||
.dropzone.dropzone-has-default .dz-message:hover {
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.dropzone .dz-preview {
|
||||
min-height: auto;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
.dropzone .dz-remove {
|
||||
position: absolute;
|
||||
right: 0.5rem;
|
||||
top: 0.5rem;
|
||||
color: #fff;
|
||||
z-index: 1000;
|
||||
cursor: pointer;
|
||||
opacity: 0;
|
||||
width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
}
|
||||
|
||||
.dropzone .dz-remove * {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.dropzone .dz-message {
|
||||
position: relative;
|
||||
padding: 5rem 2rem;
|
||||
margin: 0;
|
||||
border: 2px dashed var(--light-mode-divider);
|
||||
border-radius: 0.375rem;
|
||||
}
|
||||
|
||||
.dropzone.dropzone-single.dz-max-files-reached .dz-message {
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
color: #fff;
|
||||
opacity: 0;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
.dropzone.dropzone-single.dz-max-files-reached .dz-remove {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.dropzone.dropzone-single.dz-max-files-reached:hover .dz-message,
|
||||
.dropzone.dropzone-single.dz-max-files-reached:focus .dz-message {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.dropzone .dz-preview-single {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.dropzone .dz-preview-single:hover {
|
||||
z-index: auto;
|
||||
}
|
||||
|
||||
.dropzone .dz-preview-single .dz-preview-cover {
|
||||
position: absolute;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
border: 0 !important;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.dropzone .dz-preview-single .dz-preview-cover .dz-errormessage {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
.dropzone .dz-preview-single .dz-preview-img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
-o-object-fit: cover;
|
||||
object-fit: cover;
|
||||
border-radius: 0.375rem;
|
||||
}
|
||||
|
||||
.dropzone.dropzone-multiple {
|
||||
border: 0;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.dropzone.dropzone-multiple .dz-message {
|
||||
padding: 4rem 2rem;
|
||||
border: 2px dashed var(--light-mode-divider);
|
||||
border-radius: 0.375rem;
|
||||
}
|
||||
|
||||
.dropzone.dropzone-multiple .btn *,
|
||||
.dropzone.dropzone-multiple [data-list] .page *,
|
||||
[data-list] .dropzone.dropzone-multiple .page *,
|
||||
.dropzone.dropzone-multiple .table-list .page *,
|
||||
.table-li st .dropzone.dropzone-multiple .page *,
|
||||
.dropzone.dropzone-multiple .tox .tox-menu__footer .tox-button:last-child *,
|
||||
.tox .tox-menu__footer .dropzone.dropzone-multiple .tox-button:last-child *,
|
||||
.dropzone.dropzone-multiple .tox .tox-dialog__footer .tox-button:last-child *,
|
||||
.tox .tox-dialog__footer .dropzone.dropzone-multiple .tox-button:last-child *,
|
||||
.dropzone.dropzone-multiple .tox .tox-menu__footer .tox-button--secondary *,
|
||||
.tox .tox-menu__footer .dropzone.dropzone-multiple .tox-button--secondary *,
|
||||
.dropzone.dropzone-multiple .tox .tox-dialog__footer .tox-button--secondary *,
|
||||
.tox .tox-dialog__footer .dropzone.dropzone-multiple .tox-button--secondary * {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.dropzone.dropzone-multiple .media:first-child {
|
||||
margin-top: 1.8rem;
|
||||
}
|
||||
|
||||
.dropzone.dropzone-multiple .dz-image {
|
||||
border-radius: 0.25rem;
|
||||
height: 38px;
|
||||
width: 38px;
|
||||
-o-object-fit: cover;
|
||||
object-fit: cover;
|
||||
margin-right: 1rem;
|
||||
}
|
||||
|
||||
.dropzone.dz-drag-hover .dz-message {
|
||||
border-color: var(--light-mode-divider);
|
||||
}
|
||||
|
||||
.dropzone-area {
|
||||
border: 2px dashed #d8e2ef;
|
||||
border-radius: 0.25rem;
|
||||
height: 100%;
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
-webkit-box-pack: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
.Xmce-statusbar {
|
||||
border:0 !important;
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
@@ -1 +0,0 @@
|
||||
Too many requests, rate limited
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="../../../../groupsio/current/content/maintenance/groupsio.css%3Fv=1.0.css">
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<title>Groups.io Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="navbar navbar-head" role="navigation">
|
||||
<div class="navbar-header">
|
||||
<a href="https://groups.io/" class="navbar-left"><img src="../../../../groupsio/current/content/maintenance/img/mainlogo.png" height="50"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="container-fluid">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Groups.io Maintenance</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<p>Groups.io is currently undergoing maintenance. We apologize for the downtime, and expect to be back shortly.</p>
|
||||
<!--
|
||||
<p>Groups.io is currently undergoing scheduled maintenance. We expect to be back by 10:00AM Pacific Time.</p>
|
||||
-->
|
||||
</div>
|
||||
<div class="panel-footer">To see some cats, <a href="https://groups.io/groupsio/current/content/maintenance/cats.html">click here</a></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user