forked from AeroRust/are-we-in-space-yet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request AeroRust#8 from AeroRust/update-and-text-improvements
Update and text improvements
- Loading branch information
Showing
17 changed files
with
189 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
_site | ||
_tmp | ||
.sass-cache | ||
.jekyll-cache | ||
.jekyll-metadata | ||
vendor | ||
.bundle | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.5.3 | ||
2.7.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
source "https://rubygems.org" | ||
|
||
gem 'jekyll', '~> 3.6' | ||
gem 'jekyll', '~> 4.0', '>= 4.0.1' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,9 +13,7 @@ markdown: kramdown | |
exclude: | ||
- README.md | ||
- _tmp | ||
- Gemfile | ||
- LICENSE | ||
- vendor | ||
|
||
collections: | ||
topics: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
--- | ||
layout: default | ||
--- | ||
<article class="container post"> | ||
|
||
<header class="post-header"> | ||
<h1 class="post-title">{{ page.title }}</h1> | ||
</header> | ||
|
||
<div class="post-content"> | ||
{{ content }} | ||
</div> | ||
|
||
{% assign crates = site.data.crates_generated | where_exp:"item", "item.topics contains page.crate_tag" | sort: 'score' | reverse %} | ||
{% for crate in crates %} | ||
<div> | ||
<hr> | ||
<h3> | ||
{%if crate.name %}{{crate.name}}{% else %}{{crate.github}}{% endif %} | ||
<span style="font-size: small; vertical-align:middle;"> | ||
[ | ||
{%if crate.name %}<a href="https://crates.io/crates/{{crate.name}}">crate</a> ·{% endif %} | ||
{%if crate.repository %}<a href="{{crate.repository}}">repo</a> ·{% endif %} | ||
{%if crate.documentation %}<a href="{{crate.documentation}}">docs</a>{% endif %} | ||
] | ||
</span> | ||
</h3> | ||
|
||
<div style="line-height:1;"> | ||
{%if crate.name %} | ||
<img src="https://img.shields.io/crates/v/{{crate.name}}.svg?maxAge=2592000"> | ||
<img src="https://img.shields.io/crates/d/{{crate.name}}.svg?maxAge=2592000"> | ||
<img src="https://img.shields.io/crates/dr/{{crate.name}}.svg?maxAge=2592000"> | ||
{% endif %} | ||
{%if crate.github %} | ||
<img src="https://img.shields.io/github/stars/{{crate.github}}.svg?style=social&label=Star&maxAge=2592000"> | ||
{% endif %} | ||
</div> | ||
|
||
<p>{{crate.description}}</p> | ||
|
||
<div style="font-size: small;"> | ||
|
||
{%if crate.license %} | ||
<span class="crate-stat"><b>License</b>: {{crate.license}}</span> | ||
{% endif %} | ||
{%if crate.github %} | ||
<span class="crate-stat"><b>Last Commit</b>: {{crate.last_commit | date: "%d %b %Y"}}</span> | ||
{% endif %} | ||
{%if crate.name %} | ||
<span class="crate-stat"><b>Last Published</b>: {{crate.updated_at | date: "%d %b %Y"}}</span> | ||
{% endif %} | ||
{%if crate.github %} | ||
<span class="crate-stat"><b>Contributors</b>: {{crate.contributor_count}}</span> | ||
<span class="crate-stat"><b>Open Issues</b>: {{crate.open_issues_count}}</span> | ||
{% endif %} | ||
</div> | ||
</div> | ||
{% endfor %} | ||
|
||
<div class="followup"> | ||
Do you know of a crate that is missing? | ||
<a href="https://github.com/AeroRust/are-we-in-space-yet/issues/new?title=Add+crate:+CRATE&body=Please+add+crate+to+category:+{{ page.title | url_encode }}+%0A%0APro-tip%3a+a+quick+PR+to+_data/crates.yaml+often+gets+merged+quicker." target="_blank"> | ||
Create an issue | ||
</a> | ||
or a PR. | ||
<br> | ||
Looking for something you didn't find? Try asking on the | ||
<a href='https://discord.gg/Xd98GjuEhu'>AeroRust's Discord server</a>. | ||
</div> | ||
|
||
|
||
</article> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
layout: crates | ||
title: Astrodynamics | ||
crate_tag: astrodynamics | ||
color: green | ||
--- | ||
|
||
Astrodynamics - Celestial mechanics applied to space vehicles. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
layout: crates | ||
title: Units of measure | ||
crate_tag: units-of-measure | ||
color: green | ||
--- | ||
|
||
<blockquote cite="https://en.wikipedia.org/wiki/Unit_of_measurement"> | ||
A unit of measurement is a definite magnitude of a quantity, defined and adopted by convention or by law, that is used as a standard for measurement of the same kind of quantity. | ||
</blockquote> | ||
|
||
- <a href="https://en.wikipedia.org/wiki/Unit_of_measurement">Wikipedia</a> |
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"name": "AWLY?", | ||
"name": "AWISY?", | ||
"icons": [ | ||
{ | ||
"src": "\/images\/android-chrome-192x192.png", | ||
|