-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deploying to gh-pages from @ d3a36f1 🚀
- Loading branch information
Showing
44 changed files
with
2,145 additions
and
4 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
140 changes: 140 additions & 0 deletions
140
docs/teaching-materials/events-2024/2024-04-03_CEPLAS-ARC-Trainings/README.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,140 @@ | ||
<html class="has-navbar-fixed-top" style="scroll-behavior: smooth;"> | ||
<head> | ||
<meta charSet="utf-8"/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"/> | ||
<title> | ||
DataPLANT documentation - README 2024-04-03_CEPLAS-ARC-Trainings | ||
</title> | ||
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon.png"/> | ||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"/> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans"/> | ||
<link rel="stylesheet" type="text/css" href="./../../style/style.css"/> | ||
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css"/> | ||
<script type="module" src="/web-components-docs/js/bundle.js"></script> | ||
<style> | ||
|
||
body { | ||
margin: 0px; | ||
} | ||
|
||
thead tr th, strong { | ||
color: var(--accent-text-color) !important | ||
} | ||
|
||
a { | ||
color: var(--link-color, #4FB3D9) !important; | ||
} | ||
|
||
a:hover { | ||
color: var(--link-hover-color, #3A3A3A) !important; | ||
} | ||
|
||
thead { | ||
font-size: 1.2rem; | ||
} | ||
|
||
nfdi-toc, nfdi-body { | ||
--outside-background-color: rgb(240, 243, 246); | ||
--header-color: rgb(10, 12, 16) | ||
--element-text-color: #0E1116; | ||
--element-background-color: #fff; | ||
--accent-text-color: rgb(31, 194, 167); | ||
--link-color: #4FB3D9; | ||
--link-hover-color: #8ad3ee; | ||
} | ||
|
||
|
||
</style> | ||
</head> | ||
<nfdi-navbar></nfdi-navbar> | ||
<body> | ||
<nfdi-body class="content"> | ||
<div slot="searchbar"> | ||
<link href="/nfdi4plants.knowledgebase/pagefind/pagefind-ui.css" rel="stylesheet"/> | ||
<script src="/nfdi4plants.knowledgebase/pagefind/pagefind-ui.js" type="text/javascript"></script> | ||
<div id="search"></div> | ||
<script> | ||
window.addEventListener('DOMContentLoaded', (event) => { | ||
new PagefindUI({ | ||
element: "#search", | ||
baseUrl: "/nfdi4plants.knowledgebase" | ||
}); | ||
}); | ||
</script> | ||
</div> | ||
<h1 class="front-header"> | ||
README 2024-04-03_CEPLAS-ARC-Trainings | ||
</h1> | ||
<i class="help"> | ||
last updated at 2023-12-04 | ||
</i> | ||
<nfdi-toc></nfdi-toc> | ||
<nfdi-h2 id="see-website-locally">See website locally</nfdi-h2> | ||
<ol> | ||
<li>Execute</li> | ||
</ol> | ||
<nfdi-code class="language-bash">npm run fornax | ||
</nfdi-code> | ||
<ol start="2"> | ||
<li>Open <a href="http://127.0.0.1:8080/docs/teaching-materials/events-2024/2024-04-03_CEPLAS-ARC-Trainings/index.html">http://127.0.0.1:8080/docs/teaching-materials/events-2024/2024-04-03_CEPLAS-ARC-Trainings/index.html</a></li> | ||
</ol> | ||
<nfdi-h2 id="batch-compile-marp-slide-decks-to-html">Batch-compile marp slide decks to html</nfdi-h2> | ||
<nfdi-code class="language-bash">cd src/docs/teaching-materials/events-2024/2024-04-03_CEPLAS-ARC-Trainings | ||
</nfdi-code> | ||
<nfdi-code class="language-bash"> | ||
for unit in *.md; do | ||
|
||
if grep -q "^marp: true" "$unit" | ||
then | ||
npx @marp-team/marp-cli@latest --html --allow-local-files $unit --theme-set $marpTheme ../../style/ -- | ||
fi | ||
|
||
done | ||
</nfdi-code> | ||
<nfdi-h2 id="automate-hidden-index">automate hidden index</nfdi-h2> | ||
<nfdi-code class="language-bash"> | ||
echo "---\nlayout: docs\ntitle: \ndate: \nadd sidebar: _sidebars/mainSidebar.md\n---\n\n## Slide decks\n" > hidden-index.md | ||
|
||
for unit in *.html; do | ||
|
||
noPrefix=${unit#*-} | ||
noSuffix=${noPrefix%.*} | ||
|
||
echo "- <a href="./$unit" target="_blank">$noSuffix</a>" >> hidden-index.md | ||
|
||
|
||
done | ||
</nfdi-code> | ||
|
||
<h3> | ||
DataPLANT Support | ||
</h3> | ||
<div> | ||
Besides these technical solutions, DataPLANT supports you with community-engaged data stewardship. For further assistance, feel free to reach out via our | ||
<a href="https://support.nfdi4plants.org"> | ||
helpdesk | ||
</a> | ||
or by contacting us | ||
<span style="display: inline-flex; flex-wrap: wrap;"> | ||
<a href="javascript:location='mailto:[email protected]';void 0"> | ||
directly | ||
</a> | ||
. | ||
</span> | ||
</div> | ||
<div style="display: flex; align-items: flex-end; justify-content: space-between; margin: 1rem 0 1rem 0;"> | ||
<div> | ||
<a target="_blank" href="https://nfdi4plants.org/nfdi4plants.knowledgebase/docs/CONTRIBUTING.html" style="display: block;"> | ||
Contribution Guide 📖 | ||
</a> | ||
</div> | ||
<div> | ||
<a target="_blank" href="https://github.com/nfdi4plants/nfdi4plants.knowledgebase/blob/main/src/docs/teaching-materials/events-2024/2024-04-03_CEPLAS-ARC-Trainings/README.md" style="display: block;"> | ||
✏️ Edit this page | ||
</a> | ||
</div> | ||
</div> | ||
</nfdi-body> | ||
</body> | ||
<nfdi-footer></nfdi-footer> | ||
</html> |
Oops, something went wrong.