Use JavaScript to improve the UI.
[Sone.git] / src / main / resources / templates / index.html
index dc0b98b..9046406 100644 (file)
@@ -1,12 +1,22 @@
 <div id="sone">
 
-       <h1><%= Page.Index.Page.Title|l10n|html></h1>
+       <script src="javascript/jquery-1.4.2.js" language="javascript"></script>
+       <script src="javascript/sone.js" language="javascript"></script>
+
+       <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>
@@ -19,7 +29,7 @@
        <div id="posts">
                <%foreach posts post>
                        <div class="post">
-                               <div class="author"><a href="viewSone.html?sone=<% post.sone.id>"><% post.sone.name|html></a></div>
+                               <div class="author"><a href="viewSone.html?sone=<% post.sone.id>"><% post.sone.niceName|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>