Skip to content

Commit

Permalink
fix question text position in question page
Browse files Browse the repository at this point in the history
  • Loading branch information
brunosmartin committed Aug 21, 2014
1 parent 1cb5c61 commit 37cbae1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion themes/default/templates/question.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ <h1 class="top bottom">{{ question.title }}</h1>
<div class="content">
<p ng-bind-html="question.text|markdown"></p>
</div>
<p class="author bottom">Pergunta feita em <strong>{{ question.timestamp|date:"dd/MM/yy" }}</strong> por <a href="{% url 'profile' question.user.username %}">{{ question.user.username }}</a></p>
<p class="author bottom">Pergunta feita em <strong>{{ question.timestamp|date:"dd/MM/yy" }}</strong> por <a href="/profile/{{question.username}}">{{ question.username }}</a></p>
</td>
</tr>
</table>
Expand Down
8 changes: 4 additions & 4 deletions themes/timtec/templates/question.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@
</td>
<td style="vertical-align: middle; width: 100%;">
<h1 class="top bottom">{{ question.title }}</h1>
<p class="author bottom">Pergunta feita em <strong>{{ question.timestamp|date:"dd/MM/yy" }}</strong> por <a href="{% url 'profile' question.user.username %}">{{ question.user.username }}</a></p>
<div class="content">
<p ng-bind-html="question.text|markdown"></p>
</div>
<p class="author bottom">Pergunta feita em <strong>{{ question.timestamp|date:"dd/MM/yy" }}</strong> por <a href="/profile/{{question.username}}">{{ question.username }}</a></p>
</td>
</tr>
</table>
</header>
<div class="content">
<p ng-bind-html="question.text|markdown"></p>
</div>
</article>
{% endverbatim angularjs %}

Expand Down

0 comments on commit 37cbae1

Please sign in to comment.