mirror of
https://github.com/hay-kot/mealie.git
synced 2025-08-22 14:33:33 -07:00
docs
This commit is contained in:
parent
ca7a316ea5
commit
a969fd664e
3 changed files with 20 additions and 3 deletions
8
docs/docs/site-administration/building-pages.md
Normal file
8
docs/docs/site-administration/building-pages.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# Building Pages
|
||||||
|
|
||||||
|
Custom pages can be created to organize multiple categories into a single page. Links to your custom pages are displayed on the home page sidebar and accessible by all users, however only Administrators can create or update pages.
|
||||||
|
|
||||||
|
To create a new page. Navigate to the settings page at `/admin/settings` and scroll down to the custom pages section. Here you can create, view, and edit your custom pages. To reorder how they are displayed on the sidebar you can drag and drop the pages into the preferred order.
|
||||||
|
|
||||||
|
!!! tip
|
||||||
|
To save the order of pages you must click the save button displayed on the bottom of the Custom Page section. This is not necessary for updating individual page data.
|
|
@ -45,6 +45,7 @@ nav:
|
||||||
- Site Administration:
|
- Site Administration:
|
||||||
- User Settings: "site-administration/user-settings.md"
|
- User Settings: "site-administration/user-settings.md"
|
||||||
- Site Settings: "site-administration/site-settings.md"
|
- Site Settings: "site-administration/site-settings.md"
|
||||||
|
- Building Pages: "site-administration/building-pages.md"
|
||||||
- User Management: "site-administration/user-management.md"
|
- User Management: "site-administration/user-management.md"
|
||||||
- Backups and Restore: "site-administration/backups-and-exports.md"
|
- Backups and Restore: "site-administration/backups-and-exports.md"
|
||||||
- Recipe Migration: "site-administration/migration-imports.md"
|
- Recipe Migration: "site-administration/migration-imports.md"
|
||||||
|
|
|
@ -2,9 +2,14 @@
|
||||||
<v-container>
|
<v-container>
|
||||||
<CategorySidebar />
|
<CategorySidebar />
|
||||||
<v-card flat height="100%">
|
<v-card flat height="100%">
|
||||||
<v-card-title class="text-center justify-center py-6 headline">
|
<v-app-bar>
|
||||||
{{ title }}
|
<v-spacer></v-spacer>
|
||||||
</v-card-title>
|
<v-card-title class="text-center justify-center py-3 ">
|
||||||
|
{{ title.toUpperCase() }}
|
||||||
|
</v-card-title>
|
||||||
|
<v-spacer></v-spacer>
|
||||||
|
</v-app-bar>
|
||||||
|
|
||||||
<div v-if="render">
|
<div v-if="render">
|
||||||
<v-tabs v-model="tab" background-color="transparent" grow>
|
<v-tabs v-model="tab" background-color="transparent" grow>
|
||||||
<v-tab v-for="item in categories" :key="item.slug">
|
<v-tab v-for="item in categories" :key="item.slug">
|
||||||
|
@ -84,4 +89,7 @@ export default {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
.header-background {
|
||||||
|
background-color: #121619;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
Loading…
Add table
Add a link
Reference in a new issue