Scaffold a few pages
This commit is contained in:
parent
cf75ac58b9
commit
3e614e66f5
3 changed files with 46 additions and 1 deletions
|
@ -1,7 +1,25 @@
|
|||
// When adding new pages, they need to manually inserted into their appropriate
|
||||
// place here if you wish them to also appear in the sidebar.
|
||||
|
||||
export const sidebar = [];
|
||||
export const sidebar = [
|
||||
{
|
||||
text: "Photos",
|
||||
collapsed: true,
|
||||
items: [
|
||||
{
|
||||
text: "Features",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
text: "About",
|
||||
link: "/about/",
|
||||
},
|
||||
{
|
||||
text: "Contribute",
|
||||
link: "/about/contribute",
|
||||
},
|
||||
];
|
||||
|
||||
function sidebarOld() {
|
||||
return [
|
||||
|
|
13
docs/docs/about/contribute.md
Normal file
13
docs/docs/about/contribute.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
title: Contribute
|
||||
description: Details about how to contribute to Ente's docs
|
||||
---
|
||||
|
||||
To contribute to these docs, you can use the "Edit this page" button at the
|
||||
bottom of each page. This will allow you to directly edit the markdown file that
|
||||
is used to generate this documentation and open a quick pull request directly
|
||||
from GitHub's UI.
|
||||
|
||||
If you're more comfortable in contributing with your text editor, see the
|
||||
`docs/` folder of our GitHub repository,
|
||||
[github.com/ente-io/ente](https://github.com/ente-io/ente).
|
14
docs/docs/index.md
Normal file
14
docs/docs/index.md
Normal file
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
title: Home
|
||||
---
|
||||
|
||||
Hello. This site contains documentation and help for Ente Photos and Ente Auth.
|
||||
It describes various features, and also offers various troubleshooting
|
||||
suggestions.
|
||||
|
||||
Use the **sidebar menu** to navigate to information about the product (Photos or
|
||||
Auth) you'd like to know more about. Or the **search** at the top to try and
|
||||
jump directly to page that might contain the information you need.
|
||||
|
||||
To know more about Ente, see [about](/about/) or visit our website
|
||||
[ente.io](https://ente.io).
|
Loading…
Add table
Reference in a new issue