Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
-
- /** @var \Magento\Rss\Block\Feeds $block */
-
- ?>
- <table class="data table rss">
- <caption class="table-caption"><?= $block->escapeHtml(__('Feed')) ?></caption>
- <tbody>
- <th colspan="2" scope="col"><?= $block->escapeHtml(__('Miscellaneous Feeds')) ?></th>
- <?php foreach ($block->getFeeds() as $feed) : ?>
- <?php if (!isset($feed['group'])) : ?>
- <tr>
- <td class="col feed"><?= $block->escapeHtml($feed['label']) ?></td>
- <td class="col action">
- <a href="<?= $block->escapeUrl($feed['link']) ?>" class="action get"><span><?= $block->escapeHtml(__('Get Feed')) ?></span></a>
- </td>
- </tr>
- <?php else : ?>
- <th colspan="2" scope="col"><?= $block->escapeHtml($feed['group']) ?></th>
- <?php foreach ($feed['feeds'] as $item) :?>
- <tr>
- <td class="col feed"><?= $block->escapeHtml($item['label']) ?></td>
- <td class="col action">
- <a href="<?= $block->escapeUrl($item['link']) ?>" class="action get"><span><?= $block->escapeHtml(__('Get Feed')) ?></span></a>
- </td>
- </tr>
- <?php endforeach; ?>
- <?php endif; ?>
- <?php endforeach; ?>
- </tbody>
- </table>
|