Verzeichnisstruktur phpBB-2.0.0
- Veröffentlicht
- 03.04.2002
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 |
overall_header.tpl
001 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
002 <html dir="{S_CONTENT_DIRECTION}">
003 <head>
004 <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}">
005 <meta http-equiv="Content-Style-Type" content="text/css">
006 {META}
007 {NAV_LINKS}
008 <title>{SITENAME} :: {PAGE_TITLE}</title>
009 <!-- link rel="stylesheet" href="templates/subSilver/{T_HEAD_STYLESHEET}" type="text/css" -->
010 <style type="text/css">
011 <!--
012 /*
013 The original subSilver Theme for phpBB version 2+
014 Created by subBlue design
015 http://www.subBlue.com
016
017 NOTE: These CSS definitions are stored within the main page body so that you can use the phpBB2
018 theme administration centre. When you have finalised your style you could cut the final CSS code
019 and place it in an external file, deleting this section to save bandwidth.
020 */
021
022 /* General page style. The scroll bar colours only visible in IE5.5+ */
023 body {
024 background-color: {T_BODY_BGCOLOR};
025 scrollbar-face-color: {T_TR_COLOR2};
026 scrollbar-highlight-color: {T_TD_COLOR2};
027 scrollbar-shadow-color: {T_TR_COLOR2};
028 scrollbar-3dlight-color: {T_TR_COLOR3};
029 scrollbar-arrow-color: {T_BODY_LINK};
030 scrollbar-track-color: {T_TR_COLOR1};
031 scrollbar-darkshadow-color: {T_TH_COLOR1};
032 }
033
034 /* General font families for common tags */
035 font,th,td,p { font-family: {T_FONTFACE1} }
036 a:link,a:active,a:visited { color : {T_BODY_LINK}; }
037 a:hover { text-decoration: underline; color : {T_BODY_HLINK}; }
038 hr { height: 0px; border: solid {T_TR_COLOR3} 0px; border-top-width: 1px;}
039
040 /* This is the border line & background colour round the entire page */
041 .bodyline { background-color: {T_TD_COLOR2}; border: 1px {T_TH_COLOR1} solid; }
042
043 /* This is the outline round the main forum tables */
044 .forumline { background-color: {T_TD_COLOR2}; border: 2px {T_TH_COLOR2} solid; }
045
046 /* Main table cell colours and backgrounds */
047 td.row1 { background-color: {T_TR_COLOR1}; }
048 td.row2 { background-color: {T_TR_COLOR2}; }
049 td.row3 { background-color: {T_TR_COLOR3}; }
050
051 /*
052 This is for the table cell above the Topics, Post & Last posts on the index.php page
053 By default this is the fading out gradiated silver background.
054 However, you could replace this with a bitmap specific for each forum
055 */
056 td.rowpic {
057 background-color: {T_TD_COLOR2};
058 background-image: url(templates/subSilver/images/{T_TH_CLASS3});
059 background-repeat: repeat-y;
060 }
061
062 /* Header cells - the blue and silver gradient backgrounds */
063 th {
064 color: {T_FONTCOLOR3}; font-size: {T_FONTSIZE2}px; font-weight : bold;
065 background-color: {T_BODY_LINK}; height: 25px;
066 background-image: url(templates/subSilver/images/{T_TH_CLASS2});
067 }
068
069 td.cat,td.catHead,td.catSides,td.catLeft,td.catRight,td.catBottom {
070 background-image: url(templates/subSilver/images/{T_TH_CLASS1});
071 background-color:{T_TR_COLOR3}; border: {T_TH_COLOR3}; border-style: solid; height: 28px;
072 }
073
074 /*
075 Setting additional nice inner borders for the main table cells.
076 The names indicate which sides the border will be on.
077 Don't worry if you don't understand this, just ignore it :-)
078 */
079 td.cat,td.catHead,td.catBottom {
080 height: 29px;
081 border-width: 0px 0px 0px 0px;
082 }
083 th.thHead,th.thSides,th.thTop,th.thLeft,th.thRight,th.thBottom,th.thCornerL,th.thCornerR {
084 font-weight: bold; border: {T_TD_COLOR2}; border-style: solid; height: 28px;
085 }
086 td.row3Right,td.spaceRow {
087 background-color: {T_TR_COLOR3}; border: {T_TH_COLOR3}; border-style: solid;
088 }
089
090 th.thHead,td.catHead { font-size: {T_FONTSIZE3}px; border-width: 1px 1px 0px 1px; }
091 th.thSides,td.catSides,td.spaceRow { border-width: 0px 1px 0px 1px; }
092 th.thRight,td.catRight,td.row3Right { border-width: 0px 1px 0px 0px; }
093 th.thLeft,td.catLeft { border-width: 0px 0px 0px 1px; }
094 th.thBottom,td.catBottom { border-width: 0px 1px 1px 1px; }
095 th.thTop { border-width: 1px 0px 0px 0px; }
096 th.thCornerL { border-width: 1px 0px 0px 1px; }
097 th.thCornerR { border-width: 1px 1px 0px 0px; }
098
099 /* The largest text used in the index page title and toptic title etc. */
100 .maintitle {
101 font-weight: bold; font-size: 22px; font-family: "{T_FONTFACE2}",{T_FONTFACE1};
102 text-decoration: none; line-height : 120%; color : {T_BODY_TEXT};
103 }
104
105 /* General text */
106 .gen { font-size : {T_FONTSIZE3}px; }
107 .genmed { font-size : {T_FONTSIZE2}px; }
108 .gensmall { font-size : {T_FONTSIZE1}px; }
109 .gen,.genmed,.gensmall { color : {T_BODY_TEXT}; }
110 a.gen,a.genmed,a.gensmall { color: {T_BODY_LINK}; text-decoration: none; }
111 a.gen:hover,a.genmed:hover,a.gensmall:hover { color: {T_BODY_HLINK}; text-decoration: underline; }
112
113 /* The register, login, search etc links at the top of the page */
114 .mainmenu { font-size : {T_FONTSIZE2}px; color : {T_BODY_TEXT} }
115 a.mainmenu { text-decoration: none; color : {T_BODY_LINK}; }
116 a.mainmenu:hover{ text-decoration: underline; color : {T_BODY_HLINK}; }
117
118 /* Forum category titles */
119 .cattitle { font-weight: bold; font-size: {T_FONTSIZE3}px ; letter-spacing: 1px; color : {T_BODY_LINK}}
120 a.cattitle { text-decoration: none; color : {T_BODY_LINK}; }
121 a.cattitle:hover{ text-decoration: underline; }
122
123 /* Forum title: Text and link to the forums used in: index.php */
124 .forumlink { font-weight: bold; font-size: {T_FONTSIZE3}px; color : {T_BODY_LINK}; }
125 a.forumlink { text-decoration: none; color : {T_BODY_LINK}; }
126 a.forumlink:hover{ text-decoration: underline; color : {T_BODY_HLINK}; }
127
128 /* Used for the navigation text, (Page 1,2,3 etc) and the navigation bar when in a forum */
129 .nav { font-weight: bold; font-size: {T_FONTSIZE2}px; color : {T_BODY_TEXT};}
130 a.nav { text-decoration: none; color : {T_BODY_LINK}; }
131 a.nav:hover { text-decoration: underline; }
132
133 /* titles for the topics: could specify viewed link colour too */
134 .topictitle,h1,h2 { font-weight: bold; font-size: {T_FONTSIZE2}px; color : {T_BODY_TEXT}; }
135 a.topictitle:link { text-decoration: none; color : {T_BODY_LINK}; }
136 a.topictitle:visited { text-decoration: none; color : {T_BODY_VLINK}; }
137 a.topictitle:hover { text-decoration: underline; color : {T_BODY_HLINK}; }
138
139 /* Name of poster in viewmsg.php and viewtopic.php and other places */
140 .name { font-size : {T_FONTSIZE2}px; color : {T_BODY_TEXT};}
141
142 /* Location, number of posts, post date etc */
143 .postdetails { font-size : {T_FONTSIZE1}px; color : {T_BODY_TEXT}; }
144
145 /* The content of the posts (body of text) */
146 .postbody { font-size : {T_FONTSIZE3}px; line-height: 18px}
147 a.postlink:link { text-decoration: none; color : {T_BODY_LINK} }
148 a.postlink:visited { text-decoration: none; color : {T_BODY_VLINK}; }
149 a.postlink:hover { text-decoration: underline; color : {T_BODY_HLINK}}
150
151 /* Quote & Code blocks */
152 .code {
153 font-family: {T_FONTFACE3}; font-size: {T_FONTSIZE2}px; color: {T_FONTCOLOR2};
154 background-color: {T_TD_COLOR1}; border: {T_TR_COLOR3}; border-style: solid;
155 border-left-width: 1px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px
156 }
157
158 .quote {
159 font-family: {T_FONTFACE1}; font-size: {T_FONTSIZE2}px; color: {T_FONTCOLOR1}; line-height: 125%;
160 background-color: {T_TD_COLOR1}; border: {T_TR_COLOR3}; border-style: solid;
161 border-left-width: 1px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px
162 }
163
164 /* Copyright and bottom info */
165 .copyright { font-size: {T_FONTSIZE1}px; font-family: {T_FONTFACE1}; color: {T_FONTCOLOR1}; letter-spacing: -1px;}
166 a.copyright { color: {T_FONTCOLOR1}; text-decoration: none;}
167 a.copyright:hover { color: {T_BODY_TEXT}; text-decoration: underline;}
168
169 /* Form elements */
170 input,textarea, select {
171 color : {T_BODY_TEXT};
172 font: normal {T_FONTSIZE2}px {T_FONTFACE1};
173 border-color : {T_BODY_TEXT};
174 }
175
176 /* The text input fields background colour */
177 input.post, textarea.post, select {
178 background-color : {T_TD_COLOR2};
179 }
180
181 input { text-indent : 2px; }
182
183 /* The buttons used for bbCode styling in message post */
184 input.button {
185 background-color : {T_TR_COLOR1};
186 color : {T_BODY_TEXT};
187 font-size: {T_FONTSIZE2}px; font-family: {T_FONTFACE1};
188 }
189
190 /* The main submit button option */
191 input.mainoption {
192 background-color : {T_TD_COLOR1};
193 font-weight : bold;
194 }
195
196 /* None-bold submit button */
197 input.liteoption {
198 background-color : {T_TD_COLOR1};
199 font-weight : normal;
200 }
201
202 /* This is the line in the posting page which shows the rollover
203 help line. This is actually a text box, but if set to be the same
204 colour as the background no one will know ;)
205 */
206 .helpline { background-color: {T_TR_COLOR2}; border-style: none; }
207
208 /* Import the fancy styles for IE only (NS4.x doesn't use the @import function) */
209 @import url("templates/subSilver/formIE.css");
210 -->
211 </style>
212 <!-- BEGIN switch_enable_pm_popup -->
213 <script language="Javascript" type="text/javascript">
214 <!--
215 if ( {PRIVATE_MESSAGE_NEW_FLAG} )
216 {
217 window.open('{U_PRIVATEMSGS_POPUP}', '_phpbbprivmsg', 'HEIGHT=225,resizable=yes,WIDTH=400');;
218 }
219 //-->
220 </script>
221 <!-- END switch_enable_pm_popup -->
222 </head>
223 <body bgcolor="{T_BODY_BGCOLOR}" text="{T_BODY_TEXT}" link="{T_BODY_LINK}" vlink="{T_BODY_VLINK}">
224
225 <a name="top"></a>
226
227 <table width="100%" cellspacing="0" cellpadding="10" border="0" align="center">
228 <tr>
229 <td class="bodyline"><table width="100%" cellspacing="0" cellpadding="0" border="0">
230 <tr>
231 <td><a href="{U_INDEX}"><img src="templates/subSilver/images/logo_phpBB.gif" border="0" alt="{L_INDEX}" vspace="1" /></a></td>
232 <td align="center" width="100%" valign="middle"><span class="maintitle">{SITENAME}</span><br /><span class="gen">{SITE_DESCRIPTION}<br /> </span>
233 <table cellspacing="0" cellpadding="2" border="0">
234 <tr>
235 <td align="center" valign="top" nowrap="nowrap"><span class="mainmenu"> <a href="{U_FAQ}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_faq.gif" width="12" height="13" border="0" alt="{L_FAQ}" hspace="3" />{L_FAQ}</a> <a href="{U_SEARCH}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_search.gif" width="12" height="13" border="0" alt="{L_SEARCH}" hspace="3" />{L_SEARCH}</a> <a href="{U_MEMBERLIST}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_members.gif" width="12" height="13" border="0" alt="{L_MEMBERLIST}" hspace="3" />{L_MEMBERLIST}</a> <a href="{U_GROUP_CP}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_groups.gif" width="12" height="13" border="0" alt="{L_USERGROUPS}" hspace="3" />{L_USERGROUPS}</a>
236 <!-- BEGIN switch_user_logged_out -->
237 <a href="{U_REGISTER}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_register.gif" width="12" height="13" border="0" alt="{L_REGISTER}" hspace="3" />{L_REGISTER}</a>
238 <!-- END switch_user_logged_out -->
239 </span></td>
240 </tr>
241 <tr>
242 <td height="25" align="center" valign="top" nowrap="nowrap"><span class="mainmenu"> <a href="{U_PROFILE}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_profile.gif" width="12" height="13" border="0" alt="{L_PROFILE}" hspace="3" />{L_PROFILE}</a> <a href="{U_PRIVATEMSGS}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_message.gif" width="12" height="13" border="0" alt="{PRIVATE_MESSAGE_INFO}" hspace="3" />{PRIVATE_MESSAGE_INFO}</a> <a href="{U_LOGIN_LOGOUT}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_login.gif" width="12" height="13" border="0" alt="{L_LOGIN_LOGOUT}" hspace="3" />{L_LOGIN_LOGOUT}</a> </span></td>
243 </tr>
244 </table></td>
245 </tr>
246 </table>
247
248 <br />
249