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