Skip to content
This repository was archived by the owner on Mar 26, 2023. It is now read-only.

Commit ae2cd3b

Browse files
committed
make author page not look like shit
1 parent 31a1719 commit ae2cd3b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

authors.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ <h1 class="text-center">{{ page.title }}</h1>
1616
{% assign author_posts = each_item.items %}
1717
<div class="media">
1818
<div class="media-left">
19-
<img class="media-object img-rounded" src="https://github.com/{{ author.github }}.png?size=100" alt="{{ author.name }}" title="{{ author.name }}"/>
19+
<img class="media-object img-thumbnail mr-4" src="https://github.com/{{ author.github }}.png?size=100" alt="{{ author.name }}" title="{{ author.name }}"/>
2020
</div>
2121
<div class="media-body">
2222
<h3 class="media-heading author-name">
2323
<a href="https://twitter.com/{{ author.twitter }}">{{ author.name }}</a>
24-
<small class="lead post-count text-muted">{{ author_posts.size }} issue{% if author_posts.size > 1 %}s{% endif %}</small>
24+
<small class="text-muted">{{ author_posts.size }} issue{% if author_posts.size > 1 %}s{% endif %}</small>
2525
</h3>
2626
<ul class="posts-list">
2727
{% for post in author_posts %}
28-
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
28+
<li class="mr-3"><a href="{{ post.url }}">{{ post.title }}</a></li>
2929
{% endfor %}
3030
</ul>
3131
</div>

0 commit comments

Comments
 (0)