11-15-20_05:05:40

This commit is contained in:
Rax Ventus 2020-11-15 05:05:40 -07:00
parent df42165c72
commit 572ab0b697
1 changed files with 6 additions and 6 deletions

View File

@ -16,10 +16,10 @@ layout: default
{% assign authorData = site.data.authors[page.author] %}
<div class="author-bio">
<img src="{{authorData.image}}" alt="{{page.author}}'s Profile Photo."/>
<div class="author-name">{{page.author}}</div>
<p class="bio">{{authorData.bio}}</p>
{% for social in authorData.socials %}
<a href="{{social.url}}" class="social-link {{social.type}}-link">{{social.type}}</a>
{% endfor %}
<img src="{{ authorData.image }}" alt="{{ page.author }}'s profile picture." />
<div class="author-name">{{ page.author }}</div>
<p class="bio">{{ authorData.bio }}</p>
{% for social in authorData.socials %}
<a href="{{ social.url }}" class="social-link {{ social.type }}-link">{{ social.type }}</a>
{% endfor %}
</div>