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 |
posting_review.html
01 <h3>{L_POST_REVIEW}</h3>
02
03 <p>{L_POST_REVIEW_EXPLAIN}</p>
04
05 <!-- BEGIN post_review_row -->
06 <!-- IF post_review_row.S_IGNORE_POST -->
07 <div class="post bg3 post-ignore">
08 <div class="inner">
09 {post_review_row.L_IGNORE_POST}<br>
10 <a class="display_post_review" href="{{ post_review_row.U_MINI_POST }}">{{ lang('POST_DISPLAY') }}</a>
11 <!-- ELSE -->
12 <div class="post <!-- IF post_review_row.S_ROW_COUNT is odd -->bg1<!-- ELSE -->bg2<!-- ENDIF -->">
13 <div class="inner">
14 <!-- ENDIF -->
15
16 <div class="postbody" id="ppr{post_review_row.POST_ID}">
17 <h3><a href="{post_review_row.U_MINI_POST}">{post_review_row.POST_SUBJECT}</a></h3>
18 <p class="author">
19 <!-- IF S_IS_BOT -->
20 <span><i class="icon fa-file fa-fw icon-lightgray icon-md" aria-hidden="true"></i><span class="sr-only">{post_review_row.MINI_POST}</span></span>
21 <!-- ELSE -->
22 <a href="{post_review_row.U_MINI_POST}" title="{post_review_row.MINI_POST}">
23 <i class="icon fa-file fa-fw icon-lightgray icon-md" aria-hidden="true"></i><span class="sr-only">{post_review_row.MINI_POST}</span>
24 </a>
25 <!-- ENDIF -->
26 {L_POST_BY_AUTHOR} <!-- EVENT posting_review_row_post_author_username_prepend --><strong>{post_review_row.POST_AUTHOR_FULL}</strong><!-- EVENT posting_review_row_post_author_username_append --> » {post_review_row.POST_DATE}
27 </p>
28 <div class="content">{post_review_row.MESSAGE}</div>
29
30 <!-- IF post_review_row.S_HAS_ATTACHMENTS -->
31 <dl class="attachbox">
32 <dt>{L_ATTACHMENTS}</dt>
33 <!-- BEGIN attachment -->
34 <dd>{post_review_row.attachment.DISPLAY_ATTACHMENT}</dd>
35 <!-- END attachment -->
36 </dl>
37 <!-- ENDIF -->
38
39 </div>
40
41 </div>
42 </div>
43 <!-- END post_review_row -->
44
45 <hr />
46