Document App Templates
Each page within the documents app has its own template to display that page's content.
Where to save template files
Template files will go in a folder that has the same name as the app instance key. For example, if the document app instance key is "document" then you would put all of your template files within the document folder inside the templates folder.
If your theme was called "Custom" then this would be an example folder structure:
- themes
- custom
- theme.json
- templates
- home.twig
- one-column.twig
- two-column.twig
- document
- categories.twig
- category.twig
- document.twig
- documents.twig
- home.twig
- search.twig
- search-results.twig
- custom
Document app pages and their templates
Below is the list of document app pages and the name of the template file that you should create.
App home
The app home page often shows the documents and/or categories.
Template name: home.twig
Categories list
This page shows the list of categories.
Template name: categories.twig
Category detail
This page shows the detail information for an individual category. The documents assigned to the category are often shown.
Template name: category.twig
Document detail
This page shows the full details for an individual document.
Template name: document.twig
Documents list
This page shows a paginated list of documents.
Template name: documents.twig
Search
The search page can be used to show the form to search for profiles.
Template name: search.twig
Search results
The search results page can show the results of a directory app search. It can show a paginated list of matching profiles.
Template name: search-results.twig