Files
CoderSherlock.github.io/_includes/sidebar.html
T
haopengzhan b8ee3904d2 Added content in post and about
* Add xv6 debug
* Fix paper links in about me page
2021-10-12 19:07:27 -04:00

29 lines
922 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">Indexes</div>
</div>