-
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.
have all links in cards, using iconify icons
- Loading branch information
Showing
14 changed files
with
268 additions
and
46 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
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,6 @@ | ||
--- | ||
icon: mdi:book-education | ||
external_url: https://plenoptic.readthedocs.io/en/latest/citation.html | ||
name: Citation guide | ||
--- | ||
If you use plenoptic in a published academic article or presentation, please cite us! |
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,6 @@ | ||
--- | ||
icon: mdi:book-open-page-variant | ||
external_url: https://plenoptic.readthedocs.io/en/latest/ | ||
name: Documentation | ||
--- | ||
Read our documentation to learn how to use plenoptic and see examples. |
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,6 @@ | ||
--- | ||
icon: mdi:bookshelf | ||
external_url: https://plenoptic-org.github.io/plenoptic-workshops/ | ||
name: Workshop materials | ||
--- | ||
Browse the materials from workshops we've run to see more examples of how to use plenoptic. |
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,20 @@ | ||
--- | ||
icon: mdi:package-down | ||
external_url: https://plenoptic.readthedocs.io/en/latest/install.html | ||
name: Installation instructions | ||
--- | ||
{% tabs install %} | ||
|
||
{% tab install pip %} | ||
```bash | ||
pip install plenoptic | ||
``` | ||
{% endtab %} | ||
|
||
{% tab install conda %} | ||
```bash | ||
conda install plenoptic -c conda-forge | ||
``` | ||
{% endtab %} | ||
|
||
{% endtabs %} |
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,6 @@ | ||
--- | ||
icon: mdi:presentation | ||
external_url: https://plenoptic-org.github.io/plenoptic_presentations/ | ||
name: Presentations | ||
--- | ||
View the slides from presentations explaining the science that plenoptic can facilitate. |
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,7 @@ | ||
--- | ||
icon: mdi:head-question | ||
external_url: https://github.com/plenoptic-org/plenoptic/discussions | ||
name: Get in touch | ||
--- | ||
|
||
If you have questions or need help, post on our [discussions page](https://github.com/plenoptic-org/plenoptic/discussions). See [our readme](https://github.com/plenoptic-org/plenoptic?tab=readme-ov-file#getting-help) for what to do if you find an issue or want to contribute. |
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,6 @@ | ||
--- | ||
icon: mdi:github | ||
external_url: https://github.com/plenoptic-org/plenoptic | ||
name: Main code repo | ||
--- | ||
All of the code for plenoptic can be found on GitHub, under an open source license. |
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,20 @@ | ||
{% if include.cards %} | ||
{% assign filtered_cards = site.cards | where_exp: 'card', "include.cards contains card.title" %} | ||
{% else %} | ||
{% assign filtered_cards = site.cards %} | ||
{% endif %} | ||
|
||
<div class="grid cards"> | ||
<ul> | ||
{% for card in filtered_cards %} | ||
<li> | ||
<h3><iconify-icon class="emoji {{ card.class }}" icon="{{ card.icon }}"></iconify-icon> | ||
<a href="{{ card.external_url }}">{{ card.name }}</a></h3> | ||
{% unless card.content.size == 1 %} | ||
<hr> | ||
{{ card.content }} | ||
{% endunless %} | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
</div> |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.