Skip to content

Commit

Permalink
Merge pull request #816 from yuvipanda/events-public
Browse files Browse the repository at this point in the history
Add missing event archiver home page template
  • Loading branch information
yuvipanda authored Nov 5, 2018
2 parents 6d6a9df + 28868c0 commit fe2d3ef
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions images/events-archiver/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<!doctype html>
<html lang="en">

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

<link rel="stylesheet" href="bootstrap-4.1.3.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO">
<style>
</style>
<title>MyBinder.org Events Archive</title>
</head>

<body>
<div class='container' id='main-container'>
<div class='jumbotron'>
<h1 class='display-3'>MyBinder.org Events Archive</h1>
<p class='lead'>
Daily archive of analytics events emitted by MyBinder.org. Currently contains
an event for each repository launched.
</p>
<p>
<a href='index.jsonl'>Machine readable index</a> also available.
Ask questions about this dataset or show off cool stuff built with it at the
the <a href="https://discourse.jupyter.org/">Jupyter Discourse Forum</a>.
</p>
<p class='font-weight-light'>
Released under the <a href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 license</a>.
</p>
</div>
<table class='table'>
<thead>
<th>Date</th>
<th>Filename</th>
<th>Number of Events</th>
</thead>
{% for archive in archives %}
<tr>
<td>{{ archive.date }}</td>
<td><a href="{{ archive.name }}">{{ archive.name }}</a></td>
<td>{{ archive.count }}</td>
</tr>
{% endfor %}
</table>

<br />
<div id='footer' class='border-top row'>
<div class='col-sm font-weight-light text-right pb-2 pt-2'>
Generated by love with
<a href='https://github.com/jupyterhub/mybinder.org-deploy/tree/master/images/events-archiver'>
these scripts
</a> at {{ generated_time }}
</p>
</div>
</body>

</html>

0 comments on commit fe2d3ef

Please sign in to comment.