forked from heliophysicsPy/heliophysicsPy.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (41 loc) · 2.32 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
---
layout: default
title: Home
permalink: /
---
<div class="jumbotron">
<div class="container">
<h1 class="display-2">Python in Heliophysics Community (PyHC)</h1>
<p class="lead">{{ site.description }}</p>
<p>A community knowledge base for performing heliophysics
research in Python, aiming to provide a variety of tutorials, resources,
a list of useful packages, general discussion, and advice.</p>
</div>
</div>
<div class="container">
<h2 class="text-center">Our Mission Statement</h2>
<p class="text-center">Facilitate scientific discovery by promoting the use and development of sustainable open-source Python software across the solar and space physics community; improving communication and collaboration between disciplines, developers, and users; establishing and maintaining development standards; and fostering interoperability and reproducibility.</p>
<br>
<h2 class="text-center">Our Strategic Goals</h2>
<ul>
<li>Coordinate development across projects to minimize duplication of effort and share lessons learned</li>
<li>Promote best practices for software development, documentation, testing, and dissemination</li>
<li>Increase community awareness of and participation in projects</li>
<li>Promote scientific reproducibility and software sustainability</li>
<li>Educate and support the Python user community in solar and space physics</li>
<li>Foster an open-source Python software ecosystem for heliophysics research and education</li>
<li>Identify community needs for future development</li>
<li>Identify and pursue opportunities for financial support</li>
<li>Enable efficient interdisciplinary research</li>
</ul>
<br>
<h2>News</h2>
<hr>
{% for post in site.posts limit:5 %}
<h3><a href="{{ post.url | prepend: site.baseurl }}" class="nounderline">{{ post.title }}</a></h3>
<span class="glyphicon glyphicon-calendar" aria-hidden="true"></span> <time>{{ post.date | date: "%b %-d, %Y" }}{% if post.author %} • <a href="https://github.com/{{ post.author }}" target="_blank"><img src="https://github.com/{{ post.author }}.png?size=15"/></a> @{{ post.author }}{% endif %}{% if post.meta %} • {{ post.meta }}{% endif %}</time>
{{ post.content | markdownify }}
<hr>
{% endfor %}
<p>subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
</div>