Skip to content

Commit

Permalink
move some things around
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Golub committed Sep 8, 2010
1 parent a45dc17 commit 42e3add
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion static/css/base.css
Expand Up @@ -195,7 +195,7 @@ pre {
}

.entry .facebook {
float: right;
padding: 5px 0;
height: 18px;
}

Expand Down
6 changes: 3 additions & 3 deletions templates/modules/entry.html
@@ -1,13 +1,13 @@
<div class="entry">
<h1><a href="/{{ entry.slug }}">{{ escape(entry.title) }}</a></h1>
<div class="date">
{{ locale.format_date(entry.published, full_format=True, shorter=True) }}
</div>
{% if show_share %}
<div class="facebook">
<iframe src="http://www.facebook.com/plugins/like.php?href={{ url_escape('http://' + request.host + '/' + entry.slug) }}&amp;show_faces=false" scrolling="no" frameborder="0" allowTransparency="true" ></iframe>
</div>
{% end %}
<div class="date">
{{ locale.format_date(entry.published, full_format=True, shorter=True) }}
</div>
<div class="body">{{ entry.body }}</div>
{% if entry.tags %}
<div class="tags">
Expand Down

0 comments on commit 42e3add

Please sign in to comment.