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 |
ucp_pm_viewmessage_print.html
01 <!DOCTYPE html>
02 <html dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}">
03 <head>
04 <meta charset="utf-8" />
05 <meta http-equiv="X-UA-Compatible" content="IE=edge">
06 <meta name="robots" content="noindex" />
07 {META}
08 <title>{SITENAME} • {PAGE_TITLE}</title>
09
10 <link href="{T_THEME_PATH}/print.css" rel="stylesheet">
11 {% if S_CONTENT_DIRECTION eq 'rtl' %}
12 <link href="{T_THEME_PATH}/bidi.css" rel="stylesheet">
13 {% endif %}
14 <!-- EVENT ucp_pm_viewmessage_print_head_append -->
15 </head>
16 <body id="phpbb" class="{S_CONTENT_DIRECTION}">
17 <div id="wrap" class="wrap">
18 <a id="top" class="top-anchor" accesskey="t"></a>
19
20 <div id="page-header">
21 <h1>{SITENAME}</h1>
22 <p>{SITE_DESCRIPTION}</p>
23
24 <h2>{L_PRIVATE_MESSAGING}</h2>
25 </div>
26
27 <div id="page-body" class="page-body">
28 <div class="page-number">{PAGE_NUMBER}</div>
29 <div class="post">
30 <h3>{SUBJECT}</h3>
31 <div class="date">{L_SENT_AT} <strong>{SENT_DATE}</strong></div>
32 <div class="author">{L_PM_FROM} <strong>{MESSAGE_AUTHOR}</strong></div>
33 <!-- IF S_TO_RECIPIENT -->
34 <div class="author">{L_TO} <strong><!-- BEGIN to_recipient -->{to_recipient.NAME} <!-- END to_recipient --></strong></div>
35 <!-- ENDIF -->
36 <!-- IF S_BCC_RECIPIENT -->
37 <div class="author">{L_BCC} <strong><!-- BEGIN bcc_recipient -->{bcc_recipient.NAME} <!-- END bcc_recipient --></strong></div>
38 <!-- ENDIF -->
39 <hr />
40 <div class="content">{MESSAGE}</div>
41 </div>
42 <hr />
43 </div>
44
45 <div id="page-footer" class="page-footer">
46 <div class="page-number">{S_TIMEZONE}<br />{PAGE_NUMBER}</div>
47 <div class="copyright">
48 <p>{{ CREDIT_LINE }}
49 </p>
50 {% if TRANSLATION_INFO %}
51 <p>{{ TRANSLATION_INFO }}
52 </p>
53 {% endif %}
54 </div>
55 </div>
56 </div>
57
58 </body>
59 </html>
60