start_again

This commit is contained in:
2016-10-27 01:14:52 -04:00
parent f2f8ef95a3
commit dd89f3caca
63 changed files with 4596 additions and 64 deletions
+29
View File
@@ -0,0 +1,29 @@
<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>