forked from heliophysicsPy/heliophysicsPy.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (23 loc) · 865 Bytes
/
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
---
layout: default
title: Home
permalink: /
---
<div class="jumbotron">
<div class="containger">
<h1 class="display-2">Python in Heliophysics</h1>
<p class="lead">{{ site.description }}</p>
</div>
</div>
<h1>About</h1>
<div class="container">
The purpose of this web site is to act as a community knowledge base for performing heliophysics research in Python. It aims to provide a variety tutorials, resources, a list of useful packages, general discussion, advice and also features news items, event information and announcements.
</div>
<h1>News</h1>
<div class="container">
{% for post in site.posts %}
<time>{{ post.date | date: "%b %-d, %Y" }}</time>
<h3><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h3>
{% endfor %}
<p>subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
</div>