我遇到了问题,因为我的CSS和JS没有正确加载。我尝试了各种形式和方法,遵循无数的教程,并始终得到相同的结果。
我的css和js文件加载如下:
/drupal/themes/mytheme/0?ofeszb
使用数字而不是名称而没有CSS扩展名,并指控该文件不存在。
我的信息文件:
name: My Site Name
description : Site personalizado
type: theme
core: 8.x
libraries:
- mytheme/global-css
- mytheme/global-js
regions:
header: 'Header'
content: 'Content'
footer: 'Footer'
我的图书馆文件:
global-css:
css:
theme:
- css/style.css: {}
global-js:
js:
- js/main.js: {}
我的page.html.twig文件:
<div id="head">{{page.header}}</div>
<div id="content">{{page.content}}</div>
<div id="footer">{{page.footer}}</div>