[ Index ]

PHP Cross Reference of phpBB-3.3.14-deutsch

title

Body

[close]

/styles/all/template/ -> feed.xml.twig (source)

   1  <?xml version="1.0" encoding="UTF-8"?>
   2  <feed xmlns="http://www.w3.org/2005/Atom" xml:lang="{{ FEED_LANG }}">
   3      <link rel="self" type="application/atom+xml" href="{{ SELF_LINK }}" />
   4  
   5      {% if not FEED_TITLE is empty %}<title>{{ FEED_TITLE }}</title>{% endif %}
   6  
   7      {% if not FEED_SUBTITLE is empty %}<subtitle>{{ FEED_SUBTITLE }}</subtitle>{% endif %}
   8  
   9      {% if not FEED_LINK is empty %}<link href="{{ FEED_LINK }}" />{% endif %}
  10  
  11      <updated>{{ FEED_UPDATED }}</updated>
  12  
  13      <author><name><![CDATA[{{ FEED_AUTHOR }}]]></name></author>
  14      <id>{{ SELF_LINK }}</id>
  15  
  16      {% for row in FEED_ROWS %}
  17      <entry>
  18          {% if not row.author is empty %}<author><name><![CDATA[{{ row.author }}]]></name></author>{% endif %}
  19  
  20          <updated>{% if not row.updated is empty %}{{ row.updated }}{% else %}{{ row.published }}{% endif %}</updated>
  21  
  22          {% if not row.published is empty %}<published>{{ row.published }}</published>{% endif %}
  23  
  24          <id>{{ row.link }}</id>
  25          <link href="{{ row.link }}"/>
  26          <title type="html"><![CDATA[{{ row.title }}]]></title>
  27  
  28          {% if not row.category is empty and row.category_name is defined and row.category_name != '' %}
  29              <category term="{{ row.category_name }}" scheme="{{ row.category }}" label="{{ row.category_name }}"/>
  30          {% endif %}
  31  
  32          <content type="html" xml:base="{{ row.link }}"><![CDATA[
  33  {{ row.description }}{% if not row.statistics is empty %}<p>{{ lang('STATISTICS') }}: {{ row.statistics }}</p>{% endif %}<hr />
  34  ]]></content>
  35      </entry>
  36      {% endfor %}
  37  </feed>


Generated: Mon Nov 25 19:05:08 2024 Cross-referenced by PHPXref 0.7.1