Reorder profile stats

Fixes #69
このコミットが含まれているのは:
Zed 2019-10-08 20:51:25 +02:00
コミット 6cf8b392df
1個のファイルの変更1行の追加1行の削除

ファイルの表示

@ -44,8 +44,8 @@ proc renderProfileCard*(profile: Profile; prefs: Prefs): VNode =
tdiv(class="profile-card-extra-links"):
ul(class="profile-statlist"):
renderStat(profile.tweets, "posts", text="Tweets")
renderStat(profile.followers, "followers")
renderStat(profile.following, "following")
renderStat(profile.followers, "followers")
renderStat(profile.likes, "likes")
proc renderPhotoRail(profile: Profile; photoRail: seq[GalleryPhoto]): VNode =