Prepare for larger HTML/CSS rework.
[Sone.git] / src / main / resources / templates / index.html
index 4a12bb9..3a5bb70 100644 (file)
@@ -1,12 +1,19 @@
-<div id="sone">
+<%include include/head.html>
 
-       <h1><%= Page.Index.Page.Title|l10n|html></h1>
+       <script language="javascript">
+               /* register input field/textarea swap. */
+               $(document).ready(function() {
+                       registerInputTextareaSwap("#sone input.createpost", "What are you doing?");
+               });
+       </script>
+
+       <h1><%= Page.Index.Page.Title|l10n|insert needle="{sone}" key=currentSone.name|html></h1>
 
        <div>
                <form action="createPost.html" method="post">
                        <div>
                                <label for="text"><%= Page.Index.Label.Text|l10n|html></label>
-                               <textarea name="text"></textarea>
+                               <input class="createpost" name="text" />
                        </div>
                        <div>
                                <button type="submit"><%= Page.Index.Button.Post|l10n|html></button>
 
        <h1><%= Page.Index.PostList.Title|l10n|html></h1>
 
-       <div>
+       <div id="posts">
                <%foreach posts post>
-                       <div class="post">
-                               <div class="author"><a href="viewSone?sone=<% post.sone.id>"><% post.sone.name|html></a></div>
-                               <div class="text"><% post.text|html></div>
-                               <div class="time"><% post.time|date format="MMM d, yyyy, HH:mm:ss"></div>
-                       </div>
+                       <%include include/viewPost.html>
                <%foreachelse>
                        <div><%= Page.Index.PostList.Text.NoPostYet|l10n|html></div>
                <%/foreach>
        </div>
+       
+       <h1><%= Page.Index.AddSone.Title|l10n|html></h1>
+       
+       <div><%= Page.Index.AddSone.Description|l10n|html></div>
+
+       <form action="addSone.html" method="post">
+               <input type="hidden" name="formPassword" value="<% formPassword|html>" />
+               <input id="addsone" type="text" name="request-uri" />
+               <button type="submit"><%= Page.Index.AddSone.Button.Add|l10n|html></button>
+       </form>
 
-</div>
\ No newline at end of file
+<%include include/tail.html>