Verzeichnisstruktur phpBB-3.1.0
- Veröffentlicht
- 27.10.2014
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 name="robots" content="noindex" />
06 {META}
07 <title>{SITENAME} • {PAGE_TITLE}</title>
08
09 <link href="{T_THEME_PATH}/print.css" rel="stylesheet" type="text/css" />
10 <!-- EVENT ucp_pm_viewmessage_print_head_append -->
11 </head>
12 <body id="phpbb">
13 <div id="wrap">
14 <a id="top" class="anchor" accesskey="t"></a>
15
16 <div id="page-header">
17 <h1>{SITENAME}</h1>
18 <p>{SITE_DESCRIPTION}</p>
19
20 <h2>{L_PRIVATE_MESSAGING}</h2>
21 </div>
22
23 <div id="page-body">
24 <div class="page-number">{PAGE_NUMBER}</div>
25 <div class="post">
26 <h3>{SUBJECT}</h3>
27 <div class="date">{L_SENT_AT} <strong>{SENT_DATE}</strong></div>
28 <div class="author">{L_PM_FROM} <strong>{MESSAGE_AUTHOR}</strong></div>
29 <!-- IF S_TO_RECIPIENT -->
30 <div class="author">{L_TO} <strong><!-- BEGIN to_recipient -->{to_recipient.NAME} <!-- END to_recipient --></strong></div>
31 <!-- ENDIF -->
32 <!-- IF S_BCC_RECIPIENT -->
33 <div class="author">{L_BCC} <strong><!-- BEGIN bcc_recipient -->{bcc_recipient.NAME} <!-- END bcc_recipient --></strong></div>
34 <!-- ENDIF -->
35 <hr />
36 <div class="content">{MESSAGE}</div>
37 </div>
38 <hr />
39 </div>
40
41 <div id="page-footer">
42 <div class="page-number">{S_TIMEZONE}<br />{PAGE_NUMBER}</div>
43 <div class="copyright">Powered by phpBB® Forum Software © phpBB Limited<br />https://www.phpbb.com/</div>
44 </div>
45 </div>
46
47 </body>
48 </html>
49