added misc plugins towards wizards for the portal
[unfold.git] / plugins / wizard / wizard.html
diff --git a/plugins/wizard/wizard.html b/plugins/wizard/wizard.html
new file mode 100644 (file)
index 0000000..3b6c300
--- /dev/null
@@ -0,0 +1,21 @@
+<!-- BEGIN Smart Wizard -->
+<div id="wizard" class="swMain">
+  <ul>
+    {% for son in sons %}
+    <li>
+      <a href="#step-{{forloop.counter}}">
+        <label class="stepNumber">{{forloop.counter}}</label>
+        <span class="stepDesc">Step {{forloop.counter}}<br/><small>{{ son.title }}</small></span>
+      </a>
+    </li>
+    {% endfor %}
+  </ul>
+  
+  {% for son in sons %}
+  <div id="step-{{forloop.counter}}">  
+    <h2 class="StepTitle">{{ son.title }}</h2>
+    {{son.rendered}}
+  </div>
+  {% endfor %}
+</div> <!-- END wizard -->
+<!-- END Smart Wizard -->