Skip to content

Commit 23a25de

Browse files
authored
Merge pull request #182 from Cheukting/update-post-template
check if logo is None
2 parents 58952e3 + 4af94f3 commit 23a25de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_layouts/post.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ <h2>{{ page.title }}</h2>
3131
{% endif %}
3232

3333
{% if project.name != "None" %}
34-
{% if project.logo %}
34+
{% if project.logo != "None" %}
3535
<img class="post__project-logo" src="{{ site.baseurl }}/{{ project.logo }}">
3636
{% endif %}
3737
<p>{{ project.content }}</p>

0 commit comments

Comments
 (0)