-
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
149 changed files
with
3,190 additions
and
2,911 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,5 +1,8 @@ | ||
const withNextra = require('nextra')({ | ||
import nextra from 'nextra'; | ||
|
||
const withNextra = nextra({ | ||
theme: 'nextra-theme-docs', | ||
themeConfig: './theme.config.js', | ||
themeConfig: './theme.config.jsx', | ||
}); | ||
module.exports = withNextra(); | ||
|
||
export default withNextra(); |
Large diffs are not rendered by default.
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
File renamed without changes.
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,27 @@ | ||
export default { | ||
prog: { | ||
title: 'Programmierung', | ||
type: 'page', | ||
}, | ||
'web-prog': { | ||
title: 'Web-Programmierung', | ||
type: 'page', | ||
}, | ||
mobile: { | ||
title: 'Mobile Apps', | ||
type: 'page', | ||
}, | ||
praesi: { | ||
title: 'Präsentationskompetenzen', | ||
type: 'page', | ||
}, | ||
kennenlerntag: { | ||
title: 'Kennenlerntag', | ||
type: 'page', | ||
}, | ||
impressum: { | ||
title: 'Impressum', | ||
type: 'page', | ||
display: 'hidden', | ||
}, | ||
}; |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
export default { | ||
index: 'Übersicht', | ||
'01-intro': 'Einführung', | ||
'02-basics': 'Grundlagen von p5.js', | ||
'03-shapes': 'Formen und Farben', | ||
'04-interaction': 'Interaktion', | ||
'05-project': 'Projekt und Abschluss', | ||
}; |
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
pages/mobile/01-intro/_meta.json → pages/mobile/01-intro/_meta.js
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,9 @@ | ||
export default { | ||
'01-intro': 'Einstieg', | ||
'02-aufbau_projekte': 'Aufbau Projekte', | ||
'03-kotlin': 'Kotlin lernen', | ||
'04-compose': 'Einstieg in Compose', | ||
'05-layouts': 'Layouts, Styling und Modifier', | ||
'06-material': 'Material Design und Themes', | ||
'07-state': 'Zustand im UI', | ||
}; |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { Callout } from 'nextra-theme-docs' | ||
import { Callout } from 'nextra/components' | ||
|
||
# Navigation | ||
|
||
|
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 @@ | ||
export default { | ||
'01-lists': 'Listen', | ||
'02-storage': 'Datenbanken mit Room verwalten', | ||
'03-storage2': 'Verwendung von Room', | ||
'04-navigation': 'Navigation', | ||
'05-more': 'Ausblick', | ||
}; |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
export default { | ||
'01-intro': 'Mit Flutter starten', | ||
'02-aufbau': 'Aufbau einer Flutter-App', | ||
'03-widgets': 'Widgets ohne State', | ||
'04-state': 'Widgets mit State', | ||
'05-data': 'Daten speichern', | ||
'06-ausblick': 'Ausblick', | ||
}; |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
export default { | ||
'01-setup': 'Setup', | ||
'02-intro': 'Einstieg', | ||
'03-app': 'Todo-App', | ||
'04-components': 'Komponenten', | ||
'05-todos-list': 'Liste mit Todos', | ||
}; |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export default { | ||
'01-state': 'Zustand (state)', | ||
'02-buttons-modal': 'Buttons und Modal', | ||
'03-todo-input': 'Eingabe mit TextInput', | ||
'04-next-steps': 'Nächste Schritte', | ||
}; |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export default { | ||
pwa: 'Progressive Web Apps', | ||
ionic: 'Ionic', | ||
}; |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { Callout } from 'nextra-theme-docs' | ||
import { Callout } from 'nextra/components' | ||
|
||
# Ionic | ||
|
||
|
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,4 +1,4 @@ | ||
import { Callout } from 'nextra-theme-docs' | ||
import { Callout } from 'nextra/components' | ||
|
||
# Progressive Web Apps | ||
|
||
|
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,4 @@ | ||
export default { | ||
index: 'Überblick', | ||
devtools: 'Dev Tools', | ||
}; |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { Callout } from 'nextra-theme-docs' | ||
import { Callout } from 'nextra/components' | ||
|
||
# Dev Tools | ||
|
||
|
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,4 +1,4 @@ | ||
import { Callout } from 'nextra-theme-docs' | ||
import { Callout } from 'nextra/components' | ||
|
||
# Überblick | ||
|
||
|
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,4 +1,4 @@ | ||
{ | ||
export default { | ||
"index": "Übersicht", | ||
"setup": "Vorbereitung", | ||
"01-intro": "1 - Einleitung", | ||
|
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,11 @@ | ||
export default { | ||
index: 'Übersicht', | ||
'tag-01-index': '1. Tag: Überblick', | ||
'tag-01-nao': '1. Tag: Einstieg (mit NAO)', | ||
'tag-01-no-nao': '1. Tag: Einstieg (ohne NAO)', | ||
'tag-02': '2. Tag: Themen/Gruppen', | ||
themen: 'Themenliste', | ||
'tag-03': '3. Tag: Bearbeitung der Themen', | ||
'tag-04': '4. Tag: Präsentationen', | ||
makecode: 'Notizen zu MakeCode', | ||
}; |
This file was deleted.
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
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,9 @@ | ||
export default { | ||
'01-vorstellung': 'Vorstellung', | ||
'02-motivation': 'Motivation', | ||
'03-organisatorisches': 'Organisatorisches', | ||
'04-ablauf': 'Ablauf', | ||
'05-intro': 'Einführung', | ||
'06-javascript': 'JavaScript', | ||
'07-hello_world': 'Hello, World!', | ||
}; |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
export default { | ||
uebung: 'Übung', | ||
basics: 'Grundbegriffe', | ||
variablen: 'Variablen und Konstanten', | ||
io: 'Ein- und Ausgabe', | ||
types: 'Datentypen', | ||
uebung2: 'Übung', | ||
}; |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { Callout } from 'nextra-theme-docs' | ||
import { Callout } from 'nextra/components' | ||
|
||
# Grundbegriffe | ||
|
||
|
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,4 +1,4 @@ | ||
import { Callout } from 'nextra-theme-docs' | ||
import { Callout } from 'nextra/components' | ||
|
||
# Datentypen | ||
|
||
|
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,4 +1,4 @@ | ||
import { Callout } from 'nextra-theme-docs' | ||
import { Callout } from 'nextra/components' | ||
|
||
# Übung | ||
|
||
|
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,4 +1,4 @@ | ||
import { Callout } from 'nextra-theme-docs' | ||
import { Callout } from 'nextra/components' | ||
|
||
# Übungen | ||
|
||
|
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 @@ | ||
export default { | ||
operators: 'Operatoren', | ||
functions: 'Funktionen (Teil 1)', | ||
if: 'Verzweigungen (if/else)', | ||
smiley: 'Übung (Smiley/Sadly)', | ||
}; |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { Callout } from 'nextra-theme-docs' | ||
import { Callout } from 'nextra/components' | ||
|
||
# Funktionen (Teil 1) | ||
|
||
|
Oops, something went wrong.