Skip to content

Commit

Permalink
Improve layout of header
Browse files Browse the repository at this point in the history
  • Loading branch information
k-tamura committed Aug 31, 2017
1 parent f8d47f7 commit 2239827
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/templates/header.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<table style="width: 100%;">
<tr>
<td><h2 class="glyphicon glyphicon-globe" th:text="' ' + ${title}"></h2></td>
<td><h2><span class="glyphicon glyphicon-globe"></span> <span th:text="${title}"></span></h2></td>
<td align="right" th:if="${#httpSession == null or #httpSession.getAttribute('userid') == null}">
<a href="/" th:text="#{label.go.to.main}"></a></td>
<td align="right" th:if="${#httpSession != null and #httpSession.getAttribute('userid') != null}">
Expand Down

0 comments on commit 2239827

Please sign in to comment.