Show Sone logo when not logged in, show avatar when logged in.
[Sone.git] / src / main / resources / templates / include / head.html
index 5f0d567..c1ea806 100644 (file)
@@ -34,7 +34,7 @@
                $(document).ready(function() {
                        $("#sone .post").each(function() {
                                postId = $(this).attr("id");
-                               enhanceDeletePostButton("#sone .post#" + postId + " > .status-line .delete button", postId);
+                               enhanceDeletePostButton("#sone .post#" + postId + " > .inner-part > .status-line .delete button", postId);
                                (function(postId) {
                                        $("#sone .post#" + postId + " .reply").each(function() {
                                                replyId = $(this).attr("id");
        <script language="javascript">
                /* convert all “like” buttons to javascript functions. */
                $(document).ready(function() {
-                       $("#sone .post > .status-line .like").submit(function() {
+                       $("#sone .post > .inner-part > .status-line .like").submit(function() {
                                likePost(getPostId(this));
                                return false;
                        });
-                       $("#sone .post > .status-line .unlike").submit(function() {
+                       $("#sone .post > .inner-part > .status-line .unlike").submit(function() {
                                unlikePost(getPostId(this));
                                return false;
                        });
                <%/if>
 
                <div id="profile" class="<%ifnull currentSone>offline<%else>online<%/if>">
-                       <a class="picture" href="index.html">&nbsp;</a>
+                       <a class="picture" href="index.html">
+                               <%ifnull !currentSone>
+                                       <img src="/WoT/GetIdenticon?identity=<% currentSone.id|html>&amp;width=80&amp;height=80" width="80" height="80" alt="Profile Avatar" />
+                               <%else>
+                                       <img src="images/sone.png" width="80" height="80" alt="Sone is offline" />
+                               <%/if>
+                       </a>
                        <%ifnull ! currentSone>
                                <div id="home-sone">
                                        <% currentSone|store key=sone>