forked from heliophysicsPy/heliophysicsPy.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 1.11 KB
/
index.html
File metadata and controls
25 lines (25 loc) · 1.11 KB
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
---
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>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="http://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>