This commit is contained in:
hay-kot 2021-03-27 22:22:01 -08:00
commit a969fd664e
3 changed files with 20 additions and 3 deletions

View 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.

View file

@ -45,6 +45,7 @@ nav:
- Site Administration:
- User Settings: "site-administration/user-settings.md"
- Site Settings: "site-administration/site-settings.md"
- Building Pages: "site-administration/building-pages.md"
- User Management: "site-administration/user-management.md"
- Backups and Restore: "site-administration/backups-and-exports.md"
- Recipe Migration: "site-administration/migration-imports.md"

View file

@ -2,9 +2,14 @@
<v-container>
<CategorySidebar />
<v-card flat height="100%">
<v-card-title class="text-center justify-center py-6 headline">
{{ title }}
</v-card-title>
<v-app-bar>
<v-spacer></v-spacer>
<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">
<v-tabs v-model="tab" background-color="transparent" grow>
<v-tab v-for="item in categories" :key="item.slug">
@ -84,4 +89,7 @@ export default {
</script>
<style>
.header-background {
background-color: #121619;
}
</style>