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

09/09/2019, by mikhail
templates

We have already seen that in Drupal we have Twig built in and how to use it. In this article, we will discuss how to work with Drupal templates, what templates are in the Stable theme, how to redefine Stable templates, and how to redefine templates of various Drupal entities.

So, let's start with the Stable theme templates, go to the templates folder of the Stable theme:

templates
02/09/2019, by mikhail
Drupal 8 Breakpoints

In past tutorials, we have already connected CSS to our topic. To do this, we indicated in the drupalbook.info.yml file:

libraries:
  - drupalbook/global-styling

Next, we created the drupalbook.libraries.yml file, where we already indicated which CSS file to include:

global-styling:
  version: 1.x
  css:
    theme:
      css/style.css: {}
      css/print.css: { media: print }

From now on, we will take a detailed look at how to work with CSS in our theme.

Drupal 8 Breakpoints
30/08/2019, by mikhail
Drupal 8 theme

Starting with this article, we will do our theme thing on Drupal. In this section of the tutorial, we will analyze the basics of the topic on Drupal, where what lies, how to include and use CSS, JavaScript. To do your theme will be based on the theme-builder of the core Stable. If you want to learn Drupal, then Stable is a great start. If you want to learn Drupal, then Stable is a great start. You should not start with Bootstrap, you will constantly have questions and errors.

Drupal 8 theme
30/08/2019, by mikhail
Drupal 8 theme

In Drupal 7, you could quickly and easily make a subtopic on Zen and start building your website. Since Drupal 8 there are also several theme builder for creating your own themes. But before doing subtheme on them, you will need to figure out a little where where is located.

Drupal developers suggest that we consider the Stark example theme. This topic has been added to Drupal, just to familiarize yourself with how the theme is arranged. Let's see what lies inside this theme:

Stark.info.yml file

Drupal 8 theme
30/08/2019, by mikhail
Zen Drupal

Zen is the most popular builder theme for Drupal. If you need to quickly make a responsive design for a site based on three column layouts, then Zen is what you need. You just install it and run npm install and zen prepares you the foundation for your design. Let's take it in order.

Download the Zen parent theme from the official website:

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

Since Drupal 8 we can put themes directly into the / themes folder, so we put the folder with the theme there.

Zen Drupal