This repository has been archived by the owner on Jun 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
📝 Add some pages for the documentation
Add a TOC component
- Loading branch information
Showing
6 changed files
with
62 additions
and
8 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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<script lang="ts"> | ||
export let directoryTree: Record<string, unknown>; | ||
export let finalPath: any = true; | ||
export let currentPath = '/'; | ||
</script> | ||
|
||
<ul class="list-none"> | ||
{#each Object.keys(directoryTree) as key} | ||
<li class="capitalize"> | ||
<a href="/documentation{currentPath}{key}"> | ||
{key.replaceAll('-', ' ')} | ||
</a> | ||
{#if directoryTree[key] !== finalPath} | ||
<div class="pl-6"> | ||
<svelte:self | ||
directoryTree={directoryTree[key]} | ||
{finalPath} | ||
currentPath={currentPath + key + '/'} | ||
/> | ||
</div> | ||
{/if} | ||
</li> | ||
{/each} | ||
</ul> |
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 |
---|---|---|
@@ -1 +1,4 @@ | ||
# API | ||
## API | ||
|
||
Dlool has a REST API. It is completely open and can be used by anyone. The API is documented using [ApiDoc](https://apidocjs.com/). You can find the documentation [here](https://dlurak.github.io/dloolBackend/). I plan to migrate the documentation to this site in the future. | ||
But from now until it is done, there will be a painfull transition period where the documentation is split between two sites. |
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 +1,7 @@ | ||
## Getting Started | ||
|
||
To get started with Dlool, we recommend you read the [What is Dlool?](/documentation/getting-started/what-is-dlool) page. It will give you a quick overview of what Dlool is and what it can do for you. | ||
|
||
Later this page will be updated with more information on how to get started with Dlool. | ||
|
||
If you are already familiar with Dlool, a Pull Request to improve this page is always welcome. |
12 changes: 11 additions & 1 deletion
12
src/routes/documentation/getting-started/what-is-dlool/+page.md
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 +1,11 @@ | ||
# What's up with this Dlool | ||
## What is Dlool? | ||
|
||
Dlool is a web application to manage your entire school life. It is meant as an easy to use tool for students. While it can be used by teachers and parents, it meant to be used by students. Dlool is highly optimized for exactly that use case. | ||
|
||
Dlools core functionallity is: | ||
|
||
- **Homework Management** - Dlool allows you to write down your homework so you never forget it again. | ||
- **Notes** - Dlool has a note taking feature, these aren't meant to replace your normal notes but to be used as a quick way to write down something you need to remember. E.g. The isbn of a book you need to buy for school. | ||
- **Calendar** - Using Dlool you can easily write down all your tests and other important dates. | ||
|
||
Dlool is highly collaborative. Homework, Calendar and public Notes will be shared with your classmates. This is especially useful, if you missed a day of school and need to catch up on what you missed. |