-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (26 loc) · 942 Bytes
/
index.html
File metadata and controls
31 lines (26 loc) · 942 Bytes
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
---
layout: default
titleAfter: Stellar astronomical objects from the universe.
meta: Discover many planets from the universe both inside and outside our Solar System.
priority: 1.0
---
<h1>Planets of the Universe</h1>
<p>A planet is an astronomical object orbiting a star or stellar remnant that is massive enough to be rounded by its own gravity, is not massive enough to cause thermonuclear fusion, and has cleared its neighbouring region of planetesimals.</p>
<h2>Types of Planets</h2>
<ol>
{% for planet in site.data.planet-types %}
<li>
<a href="{{site.baseurl}}/planets/{{planet.folder}}/">{{planet.title}}</a>
{{planet.content | markdownify}}
</li>
{% endfor %}
</ol>
<h2>Recently Discovered Planets</h2>
<ul>
{% for news in site.categories.recently-discovered limit:2 %}
<li>
<a href="{{site.baseurl}}{{news.url}}">{{news.title}}</a>
<p>{{news.meta}}</p>
</li>
{% endfor %}
</ul>