Skip to content

Commit

Permalink
Merge pull request #3411 from szarnyasg/rework-menu
Browse files Browse the repository at this point in the history
Rework menu
  • Loading branch information
szarnyasg authored Aug 21, 2024
2 parents ee22130 + fbacbec commit 01dd72b
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 30 deletions.
38 changes: 19 additions & 19 deletions _data/menu_docs_dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"slug": "",
"mainfolderitems": [
{
"page": "Overview",
"page": "Getting Started",
"url": "index"
},
{
Expand Down Expand Up @@ -377,24 +377,6 @@
}
]
},
{
"page": "Configuration",
"slug": "configuration",
"subfolderitems": [
{
"page": "Overview",
"url": "overview"
},
{
"page": "Pragmas",
"url": "pragmas"
},
{
"page": "Secrets Manager",
"url": "secrets_manager"
}
]
},
{
"page": "SQL",
"slug": "sql",
Expand Down Expand Up @@ -899,6 +881,24 @@
}
]
},
{
"page": "Configuration",
"slug": "configuration",
"subfolderitems": [
{
"page": "Overview",
"url": "overview"
},
{
"page": "Pragmas",
"url": "pragmas"
},
{
"page": "Secrets Manager",
"url": "secrets_manager"
}
]
},
{
"page": "Extensions",
"slug": "extensions",
Expand Down
2 changes: 1 addition & 1 deletion _data/menu_side.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"sidemenu": [
{
"page": "Sitemap",
"url": "/docs"
"url": "/docs/sitemap"
},
{
"page": "Why DuckDB",
Expand Down
2 changes: 1 addition & 1 deletion docs/data/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: docu
title: Importing Data
---

The first step to using a database system is to insert data into that system. DuckDB provides several data ingestion methods that allow you to easily and efficiently fill up the database. In this section, we provide an overview of these methods so you can select which one is correct for you.
The first step to using a database system is to insert data into that system. DuckDB provides several data ingestion methods that allow you to easily and efficiently fill up the database. In this section, we provide an overview of these methods so you can select which one is best suited for your use case.

## Insert Statements

Expand Down
2 changes: 1 addition & 1 deletion docs/guides/offline-copy.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ You can browse the DuckDB documentation offline in two formats:

* As a [single PDF file](/duckdb-docs.pdf) (approx. 4 MB)

* As a [website packaged in a single ZIP file](/duckdb-docs.zip) (approx. 40 MB). To browse the website locally, decompress the package, navigate to the `duckdb-docs` directory, and run:
* As a [website packaged in a single ZIP file](/duckdb-docs.zip) (approx. 50 MB). To browse the website locally, decompress the package, navigate to the `duckdb-docs` directory, and run:

```bash
python -m http.server
Expand Down
22 changes: 14 additions & 8 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,19 @@ layout: docu
title: Documentation
---

Welcome to the documentation of DuckDB version 1.0!
To see the changes in this release, see the [announcement blog post]({% post_url 2024-06-03-announcing-duckdb-100 %}).
Welcome to the DuckDB documentation!

## Offline Copy
* [DuckDB connection overview]({% link docs/connect/overview.md %})
* Client APIs
* [CLI (command line interface)]({% link docs/api/cli/overview.md %})
* [Java]({% link docs/api/java.md %})
* [Python]({% link docs/api/python/overview.md %})
* [R]({% link docs/api/r.md %})
* [WebAssembly]({% link docs/api/wasm/overview.md %})
* see all [client APIs]({% link docs/api/overview.md %})
* SQL
* [SQL introduction]({% link docs/sql/introduction.md %})
* [SQL statements]({% link docs/sql/statements/overview.md %})
* [Guides]({% link docs/guides/overview.md %})

You can [browse the DuckDB documentation offline](/docs/guides/offline-copy).

## Sitemap

<div id="docusitemaphere"></div>
You can also [browse the DuckDB documentation offline]({% link docs/guides/offline-copy.md %}).
6 changes: 6 additions & 0 deletions docs/sitemap.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
layout: docu
title: Sitemap
---

<div id="docusitemaphere"></div>

0 comments on commit 01dd72b

Please sign in to comment.