Introduced initial setup for a Jekyll-based site, including configurations, layouts, assets, and styles. Added custom 404 page, favicon assets, SCSS themes, fonts, and a blog post template to establish the foundation for the site.
9 lines
242 B
HTML
9 lines
242 B
HTML
<div class="author">
|
|
<img
|
|
class="author-avatar"
|
|
src="{{ site.author.avatar }}"
|
|
alt="{{ site.author.username }}"
|
|
/>
|
|
<h2 class="author-name">{{ site.author.name }}</h2>
|
|
<p class="author-bio">{{ site.author.bio }}</p>
|
|
</div>
|