Magento 2에서는 모든 프론트 엔드 / 카트 페이지에 임의의 HTML 비트를 추가 할 수 <head/>
있습니까?
<body>
다음과 같은 코드로 내용 / 영역에 블록을 추가 할 수 있다는 것을 알고 있습니다
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceBlock name="content">
<block type="Pulsestorm\Test\Block\Head" name="pulsestorm.head" as="pulsestorm.head" template="pulsestorm/head.phtml"/>
</referenceBlock>
</body>
</page>
그러나 <head/>
페이지 요소에 내용을 추가하기위한 비슷한 블록이 있는지 확실하지 않습니다 . dev 문서 사이트와 소스 코드를 살펴 보았 으며 태그 와 함께 사용할 수있는 새로운 태그 에 대한 참조가 많이 있습니다.<head/>
<head>
<css.../>
<js.../>
</head>
그러나 <head/>
Magento 2의 페이지 섹션에 임의의 html / text를 추가하는 방법에 대한 참조를 찾을 수 없습니다 .