comparison index.php @ 1071:76e11ae923a7

Use long tags.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 24 Jan 2017 17:44:50 +0200
parents 22b6442d5cb3
children 7da8bde9b7be
comparison
equal deleted inserted replaced
1070:e23057465ca2 1071:76e11ae923a7
1 <? 1 <?php
2 // 2 //
3 // FAPWeb - Simple Web-based Demoparty Management System 3 // FAPWeb - Simple Web-based Demoparty Management System
4 // Main HTML page wrapper 4 // Main HTML page wrapper
5 // (C) Copyright 2012-2015 Tecnic Software productions (TNSP) 5 // (C) Copyright 2012-2015 Tecnic Software productions (TNSP)
6 // 6 //
94 stGetSetting("siteMenuFooter"). 94 stGetSetting("siteMenuFooter").
95 " </div>\n". 95 " </div>\n".
96 " </div>\n". 96 " </div>\n".
97 "</div>\n". 97 "</div>\n".
98 "<div id=\"infobox\">".$pageName."</div>\n"; 98 "<div id=\"infobox\">".$pageName."</div>\n";
99 ?> 99 "<div id=\"mainContent\">\n".
100 <div id="mainContent"> 100 "<div id=\"mainContentInner\">\n".
101 <div id="mainContentInner"> 101 "<div id=\"mainContentWrap\">\n";
102 <div id="mainContentWrap"> 102
103 <?
104 if (file_exists($pagePath.$pageName.$pageExt)) 103 if (file_exists($pagePath.$pageName.$pageExt))
105 include($pagePath.$pageName.$pageExt); 104 include($pagePath.$pageName.$pageExt);
106 ?> 105
107 </div> 106 echo
108 </div> 107 "</div>\n".
109 </div> 108 "</div>\n".
110 <? 109 "</div>\n".
111 echo stGetSetting("siteExtraHTML"); 110 stGetSetting("siteExtraHTML");
111
112 cmPrintPageFooter(); 112 cmPrintPageFooter();
113 ?> 113 ?>