Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions web/pandas/community/blog/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
{% for post in blog.posts %}
<div class="card">
<div class="card-body">
<h5 class="card-title"><a href="{{ base_url }}{{post.link }}" target="_blank">{{ post.title }}</a></h5>
<h5 class="card-title"><a href="{{post.link }}" target="_blank">{{ post.title }}</a></h5>
<h6 class="card-subtitle text-muted small mb-4">Source: {{ post.feed }} | Author: {{ post.author }} | Published: {{ post.published.strftime("%b %d, %Y") }}</h6>
<div class="card-text mb-2">{{ post.summary }}</div>
<a class="card-link small" href="{{ base_url }}{{post.link }}" target="_blank">Read more</a>
<a class="card-link small" href="{{post.link }}" target="_blank">Read more</a>
</div>
</div>
{% endfor %}
Expand Down