Advertisement
aaaaaa123456789

Acid Chat default homepage template

Feb 18th, 2013
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 4.09 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <!-- ##page: pageTitle, filePath, acidlogo -->
  3. <html>
  4.  
  5.   <!-- CSS styles for the page -->
  6.   <style type="text/css">
  7.   <!-- ##background_solid: backcolor, forecolor -->
  8.   table.stylePicker {
  9.   border-color: $$forecolor;
  10.   }
  11.   td.stylePicker {
  12.     color: $$forecolor;
  13.   }
  14.   font.stylePicker {
  15.     color: $$forecolor;
  16.   }
  17.   html, body {
  18.     background-color: $$backcolor;
  19.   }
  20.   <!-- #### -->
  21.   <!-- ##background_image: image, forecolor -->
  22.   table.stylePicker {
  23.   border-color: $$forecolor;
  24.   }
  25.   td.stylePicker {
  26.     color: $$forecolor;
  27.   }
  28.   font.stylePicker {
  29.     color: $$forecolor;
  30.   }
  31.   html, body {
  32.     background-image: url('$$image');
  33.   }
  34.   <!-- #### -->
  35.   </style>
  36.  
  37.   <head>
  38.   <!-- set the header, which is just the title -- no metatags -->
  39.     <title>$$pageTitle</title>
  40.   </head>
  41.  
  42.   <body />
  43.  
  44.   <center>
  45.     <!-- the two images at the top of the page -->
  46.     <img src="$$acidlogo"></img>
  47.     <br />
  48.     <img alt="PR2 players" src="$$filePath/players1.png" width="152" height="72" />
  49.   </center>
  50.   <br />
  51.  
  52.   <div>
  53.     <center>
  54.    
  55.     <!-- Buttons that show, linking to forums, rules and such -->
  56.     <!-- ##button: name, link -->
  57.     <img src="$$filePath/b_$$name.png" alt="$$name" onmouseover="this.src = '$$filePath/bh_$$name.png'" onmouseout="this.src = '$$filePath/b_$$name.png'" onclick="window.open('$$link', '_blank')" />
  58.     <!-- #### -->
  59.     <br />
  60.     <!-- Announcement box, if enabled -->
  61.     <!-- ##announcements: link -->
  62.     <iframe src="$$link" width="90%" height="150">Sorry, you can't see announcements with this browser.</iframe>
  63.     <!-- #### -->
  64.    
  65.     </center>
  66.   </div>
  67.  
  68.   <div style="width: 100%; padding: 0px; margin: 0px">
  69.     <div style="margin:0px; padding:5px; vertical-align:top; line-height:normal; min-width:100px">
  70.     <!-- a few CSS styles -->    
  71.       <div style="display:block;clear: both;text-align:left;">
  72.       <!-- main part of the page comes here -->
  73.      
  74.         <!-- ##table: cells -->
  75.         <table align="center">
  76.         <!-- the table that contains the embeds -->
  77.           <tr>
  78.          
  79.             <!-- ##cell: number, contents, width, height -->
  80.             <td>
  81.               <!-- anything that is embedded goes here -->
  82.               <br />
  83.               <center>$$contents</center>
  84.             </td>
  85.             <!-- ##### -->
  86.            
  87.           </tr>
  88.         </table>
  89.         <!-- #### -->
  90.       </div>
  91.      
  92.       <!-- Style picker code -->
  93.       <div class="stylePicker">
  94.         <!-- ##form: action, method -->
  95.         <form action="$$action" method="$$method">
  96.         <!-- this form is what holds the selectors and the submit buttons,
  97.             aka the style changers                                        -->
  98.  
  99.           <table frame="box" width="100%" align="center">
  100.           <!-- the table is just for the border, since it has one cell -->
  101.             <tr>
  102.               <td><font face="Tahoma" size="4" class="stylePicker"><center>
  103.            
  104.               <!-- the format for all selectors is the same -->
  105.               <!-- ##select: displayName, internalName -->
  106.               $$displayName:
  107.               <select name="$$internalName">
  108.               <!-- the selector itself -->
  109.            
  110.                 <!-- options go here -->
  111.                 <!-- ##option: name, value, selected -->
  112.                 <option value="$$value" $$selected>$$name</option>
  113.                 <!-- ###### -->
  114.                
  115.               </select>
  116.               <!-- ##### -->
  117.            
  118.               <!-- the button to submit the changes -->
  119.               <input type="submit" value="Change" />
  120.            
  121.               </center></font>
  122.               </td>
  123.             </tr>
  124.           </table>        
  125.        
  126.         </form>
  127.         <!-- #### -->
  128.       </div>
  129.      
  130.     </div>
  131.   </div>
  132.  
  133.   <!-- Image at the end, with the players -->
  134.   <center>
  135.     <img src="$$filePath/players2.png" />
  136.   </center>
  137.  
  138. </html>
  139. <!-- ### -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement