Skip to content

Commit

Permalink
On branch main
Browse files Browse the repository at this point in the history
Your branch is up to date with 'origin/main'.

Changes to be committed:
	new file:   content/multiple-authors.Identifier
	new file:   content/multiple-authors.jpg
	modified:   themes/vocabulary_theme/templates/macros/posts.html
  • Loading branch information
Kirsty21 committed Apr 13, 2024
1 parent 5ea10a3 commit 3b42004
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
4 changes: 4 additions & 0 deletions content/multiple-authors.Identifier
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[ZoneTransfer]
ZoneId=3
ReferrerUrl=https://www.rawpixel.com/
HostUrl=https://download-rawpixel.s3-accelerate.dualstack.amazonaws.com/dl/30/ff541ca070ed2b1997a410bc1fc97ba1.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=ASIA6P43CIYX3JZNVPBV%2F20240413%2Fap-southeast-1%2Fs3%2Faws4_request&X-Amz-Date=20240413T004032Z&X-Amz-Expires=3600&X-Amz-Security-Token=IQoJb3JpZ2luX2VjEDEaDmFwLXNvdXRoZWFzdC0xIkcwRQIgeQJqkL7AMcp4l3G9aQMe7gH3HiScUJxJyPZR8%2BjoJZkCIQDBDHn22hugv7RQh2%2BTe4EHeZxhX1keetFEA7RSVWBkJCqBAwhqEAUaDDk5NjIyMDc0OTM1OSIMrjDD9BMYXaiEj8phKt4Cuq6xc3YR3TPn5Pxo0p8zIkwH4M9o3oFYs%2BvYbfQsyJtqL5DvNCEvnyrOIYJcYElBBBRgQtLjOlrTujBE5phoJUbpc4AawLDC8hv7%2F9Bgo0zJZhzkVHX7M4fHsZ4yIgQZKXdpqKS7jCni2gJUgFTekPAoBHBJfwjDND%2BoJuW2il0Y1xwTg%2FNjjXdF8%2FsqOtUwDVHrX6d9emSxrqGNwQaE9l8dwf9QZgeC6p7absw5jawWRdR1p0E4Rtt%2F6kqa2uccgt7bOsHZIG%2FdV9k4n9t1Oe%2BR5P%2F%2FNrqTCH303uIkASHWYDs2TpaHcGj7EzE4yQZN4qpBThyjJ2EJBKvh9UKizDbBdncgVRP2PLxcJacyHrChDEm3FCXENsLGZqknu6dweSuvV6rI912l0D4v8oY%2FTtkYc6zYUcwUldA2%2BLaNn52ar59sbEAX9faqYITYRwDY30ooAyzfRg9fGoPOMW4wyaPnsAY6ngH0UHGBcIZJQgpI9tll7CB3mfpmnQI%2FUV82yvwL%2FiwMIfA2OhUgeEbT33laYO6zldnokGCIcwNagMnipzkTQVc0ePPHbS2c7JBldb6NT5J%2B06EQp96ls9drRVh5fdO%2FbE16iR7aNi%2F8yWfYdSmpadXi19%2BdI9RGTvGb2dEWJshyZpbhW5MWIrNz%2Fd1f6BCjC4NzhuAyvxidQWCz%2FYS5AQ%3D%3D&X-Amz-Signature=3c22afe975369bb1a3f3f077d71858e2781da751daa2ea62c6da7159c570a49a&X-Amz-SignedHeaders=host&response-content-disposition=attachment%3B%20filename%3D%22image-from-rawpixel-id-6482772-jpeg.jpg%22&x-id=GetObject
Binary file added content/multiple-authors.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 11 additions & 1 deletion themes/vocabulary_theme/templates/macros/posts.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,17 @@
{% macro render_post_summary(post, skip_gravatar=false) %}
<div class="column is-one-third is-paddingless padding-horizontal-big padding-top-bigger">
<article class="card entry-post horizontal no-border blog-entry">
{{ render_author_gravatar(post, skip_gravatar) }}
{% if post.author|length >= 2 %}
<header>
<figure class="image blog-image">
<img class="profile" src="/../creativecommons.github.io-source/content/multiple-authors.jpg" alt="multiple authors image"/>
</figure>
</header>
{% else %}
<header>
{{ render_author_gravatar(post, skip_gravatar) }}
</header>
{% endif %}
<div class="blog-content">
<h4 class="b-header"><a class="blog-title" href="{{ post|url }}">{{ post.title }}</a></h4>
{{ render_authors_byline(post) }}
Expand Down

0 comments on commit 3b42004

Please sign in to comment.