Skip to content

Commit

Permalink
standardize on <i> for icons
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
  • Loading branch information
Kwpolska committed Jan 5, 2015
1 parent 300c719 commit 41aca85
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions COMET/templates/jinja/comet_index.tmpl
Expand Up @@ -36,8 +36,8 @@ $('#deleteModal').on('show.bs.modal', function (event) {
<small>Date: {{ p.date }}</small>
<br><small>Author: {{ p.meta('author') }}</small>
<div class="pull-right">
<a class="btn btn-info btn-xs" href="/edit/{{ p.source_path }}"><span class="fa fa-pencil"></span> Edit</a>
<button type="button" class="btn btn-danger btn-xs" data-toggle="modal" data-target="#deleteModal" data-sourcepath="{{ p.source_path }}" data-ptitle="{{ p.title() }}"><span class="fa fa-trash"></span> Delete</a>
<a class="btn btn-info btn-xs" href="/edit/{{ p.source_path }}"><i class="fa fa-pencil"></i> Edit</a>
<button type="button" class="btn btn-danger btn-xs" data-toggle="modal" data-target="#deleteModal" data-sourcepath="{{ p.source_path }}" data-ptitle="{{ p.title() }}"><i class="fa fa-trash"></i> Delete</a>
</div>
</div>
{% endfor %}
Expand All @@ -58,8 +58,8 @@ $('#deleteModal').on('show.bs.modal', function (event) {
<small>Date: {{ p.date }}</small>
<br><small>Author: {{ p.meta('author') }}</small>
<div class="pull-right">
<a class="btn btn-info btn-xs" href="/edit/{{ p.source_path }}"><span class="fa fa-pencil"></span> Edit</a>
<button type="button" class="btn btn-danger btn-xs" data-toggle="modal" data-target="#deleteModal" data-sourcepath="{{ p.source_path }}" data-ptitle="{{ p.title() }}"><span class="fa fa-trash"></span> Delete</a>
<a class="btn btn-info btn-xs" href="/edit/{{ p.source_path }}"><i class="fa fa-pencil"></i> Edit</a>
<button type="button" class="btn btn-danger btn-xs" data-toggle="modal" data-target="#deleteModal" data-sourcepath="{{ p.source_path }}" data-ptitle="{{ p.title() }}"><i class="fa fa-trash"></i> Delete</a>
</div>
</div>
{% endfor %}
Expand Down
8 changes: 4 additions & 4 deletions COMET/templates/mako/comet_index.tmpl
Expand Up @@ -36,8 +36,8 @@ $('#deleteModal').on('show.bs.modal', function (event) {
<small>Date: ${p.date}</small>
<br><small>Author: ${p.meta('author')}</small>
<div class="pull-right">
<a class="btn btn-info btn-xs" href="/edit/${p.source_path}"><span class="fa fa-pencil"></span> Edit</a>
<button type="button" class="btn btn-danger btn-xs" data-toggle="modal" data-target="#deleteModal" data-sourcepath="${p.source_path}" data-ptitle="${p.title()}"><span class="fa fa-trash"></span> Delete</a>
<a class="btn btn-info btn-xs" href="/edit/${p.source_path}"><i class="fa fa-pencil"></i> Edit</a>
<button type="button" class="btn btn-danger btn-xs" data-toggle="modal" data-target="#deleteModal" data-sourcepath="${p.source_path}" data-ptitle="${p.title()}"><i class="fa fa-trash"></i> Delete</a>
</div>
</div>
% endfor
Expand All @@ -58,8 +58,8 @@ $('#deleteModal').on('show.bs.modal', function (event) {
<small>Date: ${p.date}</small>
<br><small>Author: ${p.meta('author')}</small>
<div class="pull-right">
<a class="btn btn-info btn-xs" href="/edit/${p.source_path}"><span class="fa fa-pencil"></span> Edit</a>
<button type="button" class="btn btn-danger btn-xs" data-toggle="modal" data-target="#deleteModal" data-sourcepath="${p.source_path}" data-ptitle="${p.title()}"><span class="fa fa-trash"></span> Delete</a>
<a class="btn btn-info btn-xs" href="/edit/${p.source_path}"><i class="fa fa-pencil"></i> Edit</a>
<button type="button" class="btn btn-danger btn-xs" data-toggle="modal" data-target="#deleteModal" data-sourcepath="${p.source_path}" data-ptitle="${p.title()}"><i class="fa fa-trash"></i> Delete</a>
</div>
</div>
% endfor
Expand Down

0 comments on commit 41aca85

Please sign in to comment.