Verzeichnisstruktur phpBB-3.3.15
- Veröffentlicht
- 28.08.2024
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
feed.xml.twig
01 <?xml version="1.0" encoding="UTF-8"?>
02 <feed xmlns="http://www.w3.org/2005/Atom" xml:lang="{{ FEED_LANG }}">
03 <link rel="self" type="application/atom+xml" href="{{ SELF_LINK }}" />
04
05 {% if not FEED_TITLE is empty %}<title>{{ FEED_TITLE }}</title>{% endif %}
06
07 {% if not FEED_SUBTITLE is empty %}<subtitle>{{ FEED_SUBTITLE }}</subtitle>{% endif %}
08
09 {% 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>
38