-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathindex.html
66 lines (52 loc) · 2.35 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
---
title: Astropy Data Server
---
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="Astropy. A Community Python Library for Astronomy." />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" href="images/favicon.ico" />
<link href='http://fonts.googleapis.com/css?family=Open+Sans:200,300,400italic,400,700' rel='stylesheet' type='text/css' />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<!-- Uncomment this once the mirroring server grabs file lists from JSON instead of html. Also change the <ul> below to <ul id="files-list"> and replace the content with "Loading file list..."
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="js/index_page.js"></script>
-->
<title>{{ page.title }}</title>
</head>
<body>
<div id="wrapper">
<nav>
<a href="http://www.astropy.org"><img src="images/astropy_word_32.png"/></a>
<div id="navigation">
<ul>
<li style="margin-top: 9px"><a href="http://data.astropy.org">Data</a></li>
</ul>
</div>
</nav>
<section>
<h1> Astropy Data Server</h1>
<p>
This is the data server for <a href="http://www.astropy.org">the Astropy project</a>. Small data files are generally included with the library code, but larger files are hosted here, accessible via the <a href="http://astropy.readthedocs.org/en/stable/utils/index.html#module-astropy.utils.data">get_pkg_data_*</a> class of functions. These data files are also used to store data files needed for the <a href="http://tutorials.astropy.org"> astropy tutorials</a>.
</p>
<p>
The files stored here are listed below.
</p>
<ul>
{% for s in site.static_files %}
{% assign firstdir = s.path |remove_first: "/" | split: "/" | first%}
{% if (firstdir == 'js') or (firstdir == 'css') or (firstdir == 'images') or (firstdir == 'pages-build-version') or (firstdir == 'tests') or (s.path contains 'README.md') %}
{% else %}
<li><a href="{{ s.path |remove_first: "/" }}">{{ s.path |remove_first: "/" }}</a></li>
{% endif %}
{% endfor %}
</ul>
<p>
A machine-readable JSON list of files is also available: <a href="file_index.json">file_index.json</a>
</p>
</section>
</div>
</body>
</html>