mirror of
https://github.com/CoderSherlock/CoderSherlock.github.io.git
synced 2026-06-12 23:58:11 -07:00
29 lines
918 B
HTML
29 lines
918 B
HTML
<div class="col-box col-box-author">
|
|
<img class="avatar" src="{{ site.avatar }}" alt="{{ site.author }}">
|
|
<div class="col-box-title name">{{ site.author }}</div>
|
|
<p>{{ site.profile }}</p>
|
|
<p class="contact">
|
|
{% if site.github_username %}
|
|
<a href="https://github.com/{{ site.github_username }}">GitHub</a>
|
|
{% endif %}
|
|
{% if site.twitter_username %}
|
|
<a href="https://twitter.com/{{ site.twitter_username }}">Twitter</a>
|
|
{% endif %}
|
|
{% if site.email %}
|
|
<a href="mailto:{{ site.email }}">Email</a>
|
|
{% endif %}
|
|
</p>
|
|
</div>
|
|
|
|
<div class="col-box">
|
|
<div class="col-box-title">Newest Posts</div>
|
|
<ul class="post-list">
|
|
{% for post in site.posts limit:5 %}
|
|
<li><a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="col-box post-toc hide">
|
|
<div class="col-box-title">TOC</div>
|
|
</div> |