I'm testing Drupal 10's StarterKit Theme script. I issue the script command, giving a theme name, but the theme is never created? What gives? Should I stick with the traditional subtheme practice?
Is it possible to merge a secondary level array into a primary array without creating new primary arrays. For example I have a set of “tiles” that need to have an array of “list” that I’m merging like so.
I have a media type "mt_packages" registering a PDF and enabled the description field.
Added field "field_packages" with unrestricted media reference to content type "ct_packages" to reference "mt_packages".
How can I get the media file description field in page.html.twig?
I got the URL, but not the description.
Below is the code that got the URL. What should I add to this?
{% for file in node.field_packages %}
<li>
{{ file|file_url }}
</li>
{% end for %}