First steps
This page provides a short playbook which introduces you to the most important features of Lupus Decoupled Drupal. It only takes 1-2 minutes to follow:
Creating and viewing content
- Create an article
In the backend, login and go to
/node/add/article
to create some first example content. Fill in some random content and save it. - After saving, you are redirected to the frontend, which renders the basic data of your content. You can customize that easily, as described under the Customized API output page. For now, stay here and remember the frontend URL of your page, e.g.
/node/1
. - On the frontend go the user login, e.g.
/user/login?destination=/
. Login with your usual Drupal credentials, e.g. and admin or editor account. For the Gitpod demo environments you can log in withadmin
and passwordlupus123
. - After logging in, go back to your created content in the frontend, e.g.
/node/1
. Take not of the local task links (or "Drupal-tabs") that appear now. - Click the
Edit
task link, to get back to the Drupal edit page. Now, let's change the URL-alias of the content in the right sidebar, e.g. to/example-path
. Also, in the sidebar, enable the option to provide a menu item and keep the defaults. - Save the form and take note of the changes appearing in the frontend:
- The URL of the content changed to
/example-path
. - A menu items is appearing in the main menu, which is part of the site header.
- A success message is provided by Drupal and shown in the frontend.
- The URL of the content changed to
- Optionally, you may log out in the frontend, separate from the backend, by visiting the
/user/logout
path in the frontend.
Inspecting API output of content
- After creating content, it's listed in Drupal's content management screen at
/admin/content/node
in the backend. - To inspect the custom element API output of some content, use the drop-down next to the
Edit
operation button on the right and choose the entryAPI output
. It shows the API output of the associated page. - Optionally, switch between markup and JSON serialization by appending the query parameter
?_content_format=markup
or?_content_format=json
(default) to the URL of the API output.
Table of Contents