Skip to content
Snippets Groups Projects
Commit eae9a2a5 authored by Angie Byron's avatar Angie Byron
Browse files

Issue #1189804 by cosmicdreams, jessebeach, martin107, mgifford, dcmouyard,...

Issue #1189804 by cosmicdreams, jessebeach, martin107, mgifford, dcmouyard, pwieck, smiro | Jeff Burnz: Convert aggregator-feed-source.html.twig to HTML5.
parent 4c834544
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -3,7 +3,7 @@
* @file
* Default theme implementation to present the source of the feed.
*
* The contents are rendered above feed listings when browsing source feeds.
* The contents are rendered below feed listings when browsing source feeds.
* For example, "example.com/aggregator/sources/1".
*
* Available variables:
......@@ -19,16 +19,14 @@
* @ingroup themeable
*/
#}
<div{{ attributes}}>
<div{{ attributes }}>
{{ source_icon }}
{{ source_image }}
<div class="feed-description">
{{ source_description }}
</div>
<div class="feed-url">
<em>{{ 'URL'|t }}:</em> <a href="{{ source_url }}">{{ source_url }}</a>
</div>
<div class="feed-updated">
<em>{{ 'Updated'|t }}:</em> {{ last_checked }}
</div>
<p class="feed-description">{{ source_description }}</p>
<dl class="feed-details">
<dt class="feed-url">{{ 'URL'|t }}</dt>
<dd>{{ source_url }}</dd>
<dt class="feed-updated">{{ 'Updated'|t }}</dt>
<dd>{{ last_checked }}</dd>
</dl>
</div>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment