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 |
viewtopic_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 viewtopic_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}<br /><a href="{U_FORUM}">{U_FORUM}</a></p>
19
20 <h2>{TOPIC_TITLE}</h2>
21 <p><a href="{U_TOPIC}">{U_TOPIC}</a></p>
22 </div>
23
24 <div id="page-body">
25 <div class="page-number">{PAGE_NUMBER}</div>
26 <!-- BEGIN postrow -->
27 <div class="post">
28 <h3>{postrow.POST_SUBJECT}</h3>
29 <div class="date">{L_POSTED}{L_COLON} <strong>{postrow.POST_DATE}</strong></div>
30 <div class="author">{L_POST_BY_AUTHOR} <strong>{postrow.POST_AUTHOR}</strong></div>
31 <div class="content">{postrow.MESSAGE}</div>
32 </div>
33 <hr />
34 <!-- END postrow -->
35 </div>
36
37 <div id="page-footer">
38 <div class="page-number">{S_TIMEZONE}<br />{PAGE_NUMBER}</div>
39 <div class="copyright">Powered by phpBB® Forum Software © phpBB Limited<br />https://www.phpbb.com/</div>
40 </div>
41 </div>
42
43 </body>
44 </html>
45