Drupal 8 и таблицы стилей - PullRequest
1 голос
/ 19 мая 2019

Drupal 8 не будет отображать мою таблицу стилей. Любые идеи, почему это не будет делать?

Я пытался очистить кеш, но это не помогло. ниже мой код:

fluffiness.info.yml

name: fluffiness
type: theme
description: "A cuddly theme that offers extra fluffiness"
core: 8.x
libraries:
  -fluffiness/cuddly-slider
base them: classy
regions:
  header: Header
  content: Content
  sidebar_first: 'Sidebar first'
  footer: Footer

fluffiness.libraries.yml

cuddly-slider:
  version: 1.x
  css:
    theme:
      css/cuddly-slider.css: {}
  js:
    js/cuddly-slider.js: {}
  dependencies:
    - core/jquery

темы / пользовательские / пушистость / страница - front.html.twig

{{ attach_library('fluffiness/cuddly-slider') }}
<header role="banner">
    {{ page.header }}
</header>
<div class="layout-container">

  <main role="main">
    <a id="main-s" tabindex="-1"></a>{# link is in html.html.twig #}

    <div class="layout-content">
      {{ page.content }}
    </div>{# /.layout-content #}


  </main>

  {% if page.footer %}
    <footer role="contentinfo">
      {{ page.footer }}
    </footer>
  {% endif %}

</div>

темы / пользовательские / пушистость / CSS / плюшевый-slider.css

header {
    background-color: black;
}
...