You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@wookie.apache.org by rg...@apache.org on 2011/04/03 21:54:22 UTC

svn commit: r1088390 - /incubator/wookie/trunk/widgets/widget-template/s5/index.html

Author: rgardler
Date: Sun Apr  3 19:54:21 2011
New Revision: 1088390

URL: http://svn.apache.org/viewvc?rev=1088390&view=rev
Log:
Add slide content div to provide more control over styling

Modified:
    incubator/wookie/trunk/widgets/widget-template/s5/index.html

Modified: incubator/wookie/trunk/widgets/widget-template/s5/index.html
URL: http://svn.apache.org/viewvc/incubator/wookie/trunk/widgets/widget-template/s5/index.html?rev=1088390&r1=1088389&r2=1088390&view=diff
==============================================================================
--- incubator/wookie/trunk/widgets/widget-template/s5/index.html (original)
+++ incubator/wookie/trunk/widgets/widget-template/s5/index.html Sun Apr  3 19:54:21 2011
@@ -62,20 +62,28 @@
 <div class="presentation">
   <div class="slide">
     <h1>@widget.shortname@</h1>
-    <p>@widget.description@</p>
-    <p>To customise this presentation see the
-    <a href="http://meyerweb.com/eric/tools/s5/">s5 documentation</a>.</p>
+    <div class="slidecontent">
+      <p>@widget.description@</p>
+      <p>To customise this presentation see the
+      <a href="http://meyerweb.com/eric/tools/s5/">s5 documentation</a>.</p>
+      <p>This document can be viewed in long-form or as a presentation. To switch between the 
+         two press the 't' key. When in presentation mode you can view the navigation
+         controls by pressing 'c' and you can advance slides with a mouse click, spacebar,
+         right arrow or page down.</p>
+    </div>
   </div>
 
   <div class="slide">
     <h1>[slide title]</h1>
-    <ul>
-      <li>[point one]</li>
-      <li>[point two]</li>
-      <li>[point three]</li>
-      <li>[point four]</li>
-      <li>[point five]</li>
-    </ul>
+    <div class="slidecontent">
+      <ul>
+        <li>[point one]</li>
+        <li>[point two]</li>
+        <li>[point three]</li>
+        <li>[point four]</li>
+        <li>[point five]</li>
+      </ul>
+    </div>
     
     <div class="handout">[any material that should appear in print but
     not on the slide]</div>
@@ -85,13 +93,15 @@
 
   <div class="slide">
     <h1>[slide title]</h1>
-    <ul>
-      <li>[point one]</li>
-      <li>[point two]</li>
-      <li>[point three]</li>
-    </ul>
+    <div class="slidecontent">
+      <ul>
+        <li>[point one]</li>
+        <li>[point two]</li>
+        <li>[point three]</li>
+      </ul>
+    </div>
     
-    <div class="handout">[handout notes]</div>
+    <div class="handout">[optional handout notes]</div>
   </div>  
 -->