Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue:#571 Added author name to blogs #613

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,7 @@ In this section, we will guide you through the steps for creating a new blog pos
title: "How to Make a Blog Post?"
date: YYYY-MM-DD
categories: press
author: sugarlabs
---
```

Expand Down
5 changes: 4 additions & 1 deletion community-news.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@ <h2 class="text-center">COMMUNITY NEWS</h2>
{% for post in site.categories.community limit:10 %}
<li class="listFont">
<a href="{{ post.url }}">{{ post.title }}</a>
<i style="display: block;">{{ post.date | date: "%b %-d %Y" }}</i>
<div>
<span class="fw-bold me-3" style="font-size: 15px;">{{ post.author }}</span>
<span class="text-muted" style="font-size: 12px;">{{ post.date | date: "%b %-d %Y" }}</span>
</div>
<hr>
</li>
{% endfor %}
Expand Down