-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #816 from yuvipanda/events-public
Add missing event archiver home page template
- Loading branch information
Showing
1 changed file
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |