Documentation: Widget Window Manager

Example

Content without the wiki

     <html>
       <head>
         <title>Hello World Titles</title>
       </head>
       <body>
         <p>Hello World</p>
       </body>
     </html>

Hello World Titles

Hello World

Content within a window

   <div class="window">
     <html>
       <head>
         <title>Hello World Titles</title>
       </head>
       <body>
         <p>Hello World</p>
       </body>
     </html>
   </div>

Hello World Titles

Hello World

Content with Window Manager

XXX Complete this example. Add in all the optional bits.

XXX Review the issues of dependence on "columnX" titles in Zaltana.


<div class="window_manager">

 <div class="set">
   <div class="window">
     <html>
       <head>
         <title>Top Left</title>
       </head>
       <body>
         <p>Hello World</p>
       </body>
     </html>
   </div>
   <div class="window">
     <html>
       <head>
         <title>Bottom Left</title>
       </head>
       <body>
         <p>Hello World</p>
       </body>
     </html>
   </div>
  </div>

 <div class="set">
   <div class="window">
     <html>
       <head>
         <title>Top Left</title>
       </head>
       <body>
         <p>Hello World</p>
       </body>
     </html>
   </div>
   <div class="window">
     <html>
       <head>
         <title>Bottom Left</title>
       </head>
       <body>
         <p>Hello World</p>
       </body>
     </html>
   </div>
 </div>

</div>