Browse the code
| Revision log Information on the revision | |
|---|---|
| Revision: | 143 (differences) |
| Author: | xbright |
| Log message: |
* New way to load modules (based on a little XML file) * New way to store pages in cache * New way to handle menus * A lot of new things to the default CSS * Bug fixes |
| Change revision: | |
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="{tpl:lang}" xml:lang="{tpl:lang}"> <head> <base href="{tpl:baseurl}" /> <title>{title} - CodingTeam</title> {htmlmeta} <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <link href="{tpl:cssdir}default.css" rel="stylesheet" type="text/css" /> <link href="{tpl:logosimages}ct_cube.ico" rel="shortcut icon" /> </head> <body> <div id="container"> <div id="header"> <a href="index"><img src="{tpl:logosimages}ct_logo_both.png" alt="CodingTeam" class="headerimg" /></a> <h1>{slogan}</h1> <div id="member"> {view:head_member} </div> <div id="navcontainer"> <ul id="navlist"> {tpl:notepadmenu} </ul> </div> </div> <div id="informationbox"> <div id="search"> {view:head_search} </div> <div id="infos"> {view:infos} </div> </div> {view:pagemenu} <div id="content"> {view:pagecontent} </div> <div id="footer"> <div id="powered"> <a href="http://www.codingteam.net/project/codingteam">{poweredby}</a><br /> <a href="http://www.codingteam.net"><strong>http://www.codingteam.net</strong></a> </div> <p> Copyright © 2007-2008 CodingTeam <a href="admin" class="admin">{link_admin}</a><br /> <a href="index/about">{link_about}</a> - <a href="index/tou">{link_tou}</a><br /> <a href="http://validator.w3.org/check?uri=referer"> <img src="{tpl:images}valid_xhtml.png" alt="Valid XHTML 1.0 Strict" /></a> <a href="http://jigsaw.w3.org/css-validator/check/referer"> <img src="{tpl:images}valid_css.png" alt="Valid CSS" /></a> </p> </div> </div> </body> </html>

CodingTeam