Extra Block Types (EBT) - New Layout Builder experience❗

Extra Block Types (EBT) - styled, customizable block types: Slideshows, Tabs, Cards, Accordions and many others. Built-in settings for background, DOM Box, javascript plugins. Experience the future of layout building today.

Demo EBT modules Download EBT modules

❗Extra Paragraph Types (EPT) - New Paragraphs experience

Extra Paragraph Types (EPT) - analogical paragraph based set of modules.

Demo EPT modules Download EPT modules

Scroll

Articles

05/08/2019, by mikhail
gallery

Often on the site you need to display the image in a popup window, for this in the Drupal there is a very popular Colorbox module:

https://www.drupal.org/project/colorbox

composer require drupal/colorbox

drush en colorbox

After installation we need to go to the module folder, find the README.txt file and find a link to the colorbox library

/web/modules/contrib/colorbox

gallery
05/08/2019, by mikhail
News

Views module is one of the most popular modules. It allows you to display any data you want News, Articles, Comments, Taxonomy terms in the form of blocks, pages, RSS feeds, CSV files, XML files, and in many other formats. And finally, in Drupal 8 Views in the core! Now it does not need to be installed, Views is in the standard installation.

Let's include on Views and start displaying the data.

Create the content type News.

News
31/07/2019, by mikhail

Drupal is able to work, not only with text pages, but also with images. To do this, you need to enable the Image module. The image module allows you to attach photos to the nodes and display these photos in the size we need. And in different places, these sizes may vary. So for example in the teaser of the node we can take a small photo, and in the full node it is already a big one.

In the past lessons we created the content type Employee. Let's open up the control of the content type fields Employee and add an image field.

29/07/2019, by mikhail
Field

In Drupal there are wonderful modules Fields, Field UI, they allow us to attach different fields to objects (nodes, comments, users, taxonomy terms), which are created by the Entity module.With the help of Entity + Fields, you can implement any connection between real-life objects on the site. For example, you have a firm, the firm has various departments, and there are employees in the departments.Create a taxonomy department covabulary, write all departments of a company there, create an Content type Employee and attach a field to it.

Field
26/07/2019, by mikhail
 Blocks

In Drupal 8, as in previous versions, you can add additional blocks in the regions.Usually in the Drupal themes there are regions: Header, first and second sidebar, content and footer of the site. Let's go to the Menu - Structure — Block Lyout. In the Bartik theme we have the following regions:

 Blocks
23/07/2019, by mikhail
terms

In the last lesson we made a blog from Drupal, but that blog didn’t have enough of a tags for articles and tags. Let's add a vocabulary, using taxonomy. Enable the Taxonomy module for this if it is not already enabled.

Taxonomy in Drupal is a method of classification (rubricator, categorization) of nodes with the help of taxonomy tags (terms, categories). Let's create a vocabulary tags, with which we will classify our articles Menu - Structure — Taxonomy.

terms
23/07/2019, by mikhail
Blog

The blog module is now not included in the Drupal core and can be downloaded from the module page:

https://www.drupal.org/project/blog

It is installed as well as all other modules. Drupal is a ready-made blog platform, you only need to enable the CKEditor module for more convenient editing. Enable it if it is not enabled.

Now you need to configure the CKEditor module, go to Menu - Configuration- Text formats and editors and click the settings for Plain Text.

Blog
26/06/2019, by mikhail
content types

Drupal has become even more convenient for content managers, now you can edit the site without going to the admin area. To do this, use the spark project:

https://drupal.org/project/spark

As a result, added:

  • Admin menu adapted for mobile devices
  • Fully customized visual editor CKEditor
  • Content editor directly from the site without entering the admin area
  • Improved two column admin for editing
  • (Supposed) preview tool for mobile

 

content types