Skip to content
Snippets Groups Projects
Verified Commit 292c7e51 authored by Tóth Miklós Tibor's avatar Tóth Miklós Tibor :shrug:
Browse files

skeleton

parent b6c36b56
No related branches found
No related tags found
No related merge requests found
# Hello world
\ No newline at end of file
# Üdv a Linuxos előadás segédletében
## Anyag előadásonként
- [1. Előadás](első%20előadás.md)
- [2. Előadás](második%20előadás.md)
\ No newline at end of file
első
\ No newline at end of file
......@@ -10,6 +10,20 @@
<div id="docute"></div>
<script src="https://unpkg.com/docute@4/dist/docute.js"></script>
<script>
let tmp = [
"első előadás",
"második előadás",
];
let pages = [];
tmp.forEach(val => {
pages.push({
title: val,
link: encodeURI(val),
});
});
new Docute({
target: '#docute',
title: 'Linux',
......@@ -21,6 +35,22 @@
],
detectSystemDarkTheme: true,
darkThemeToggler: true,
nav: [
{
title: "/",
link: '/'
},
{
title: "Source",
link: "https://git.sch.bme.hu/mikewashere/linux-presentation"
},
],
sidebar: [
{
title: "linux/",
children: pages,
},
],
})
</script>
</body>
......
második
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment