Skip to content

Commit

Permalink
Fix issue#4. Improve layout.
Browse files Browse the repository at this point in the history
  • Loading branch information
k-tamura committed Aug 29, 2017
1 parent 60a93bc commit f0808cc
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
18 changes: 12 additions & 6 deletions src/main/resources/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@
<table style="width: 720px;">
<tr>
<td><img src="images/easybuggy.png" /></td>
<td><span class="glyphicon glyphicon-warning-sign" th:text="#{description.all}"></span></td>
<td><span class="glyphicon glyphicon-warning-sign"></span>
<span th:text="#{description.all}"></span></td>
</tr>
</table>
</header>
<hr />
<h2>
<span class="glyphicon glyphicon-knight" th:text="' '+#{section.troubles}"></span>
<span class="glyphicon glyphicon-knight"></span>
<span th:text="#{section.troubles}"></span>
</h2>
<p th:text="#{description.troubles}"></p>
<ul>
Expand All @@ -38,7 +40,8 @@ <h2>
</ul>

<h2>
<span class="glyphicon glyphicon-knight" th:text="' '+#{section.vulnerabilities}"></span>
<span class="glyphicon glyphicon-knight"></span>
<span th:text="#{section.vulnerabilities}"></span>
</h2>
<p th:text="#{description.vulnerabilities}"></p>
<ul>
Expand Down Expand Up @@ -69,7 +72,8 @@ <h2>
</ul>

<h2>
<span class="glyphicon glyphicon-knight" th:text="' '+#{section.performance.issue}"></span>
<span class="glyphicon glyphicon-knight"></span>
<span th:text="#{section.performance.issue}"></span>
</h2>
<p th:text="#{description.performance.issue}"></p>
<ul>
Expand All @@ -79,7 +83,8 @@ <h2>
</ul>

<h2>
<span class="glyphicon glyphicon-knight" th:text="' '+#{section.errors}"></span>
<span class="glyphicon glyphicon-knight"></span>
<span th:text="#{section.errors}"></span>
</h2>
<p th:text="#{description.errors}"></p>
<ul>
Expand All @@ -99,7 +104,8 @@ <h2>
</ul>

<h2>
<span class="glyphicon glyphicon-knight" th:text="' '+#{section.exceptions}"></span>
<span class="glyphicon glyphicon-knight"></span>
<span th:text="#{section.exceptions}"></span>
</h2>
<p th:text="#{description.section.exceptions}"></p>
<ul>
Expand Down
3 changes: 2 additions & 1 deletion src/main/resources/templates/strplusopr.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
<input type="text" name="length" size="6" maxlength="6" th:value="${length}" />
<p th:utext="${html}" /><br />
<div class="alert alert-info" role="alert">
<span class="glyphicon glyphicon-info-sign" th:utext="#{msg.note.slow.string.plus.operation}"></span>
<span class="glyphicon glyphicon-info-sign"></span>
<span th:utext="#{msg.note.slow.string.plus.operation}"></span>
</div>
</form>
</body>
Expand Down

0 comments on commit f0808cc

Please sign in to comment.