-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
50 additions
and
2 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
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 |
---|---|---|
|
@@ -33,7 +33,14 @@ | |
|
||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script> | ||
<!-- Core theme JS--> | ||
<script src="assets/js/scripts.js"></script> | ||
<script src="/assets/js/scripts.js"></script> | ||
|
||
<!-- Use MathJax, only when requested in the frontmatter --> | ||
{% if page.usemathjax %} | ||
<script type="text/javascript" async | ||
src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML"> | ||
</script> | ||
{% endif %} | ||
</body> | ||
</html> | ||
|
||
|
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: content_page | ||
--- | ||
<h1>{{ page.title }}</h1> | ||
<h3>{{ page.subtitle }}</h3> | ||
<p>{{ page.date | date_to_string }}</p> | ||
|
||
{{ content }} |
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,17 @@ | ||
--- | ||
layout: post | ||
title: Example post | ||
subtitle: Subtitle should also render underneath, on the page and on the article list | ||
usemathjax: true | ||
--- | ||
|
||
This is the post itself, written in markdown. **Bold** and *italics* text are supported, as is `inline code`. | ||
Even code blocks! | ||
```python | ||
import numpy as np | ||
|
||
np.zeros((5,5)) | ||
|
||
``` | ||
mathjax works! | ||
$$\Sigma \sim \mathrm{Normal}\left(\mu, \sigma\right)$$ |
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,16 @@ | ||
--- | ||
layout: content_page | ||
title: Blog | ||
--- | ||
|
||
<h1> Reciprocal Space Station Blog </h1> | ||
A place for explanations and elaborations from the RS-station astronauts. | ||
|
||
<hr> | ||
|
||
{% for post in site.posts %} | ||
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2> | ||
{{ post.subtitle }} | ||
<br> | ||
<br> | ||
{% endfor %} |