Update Google adsence

This commit is contained in:
2017-01-20 14:19:29 -05:00
parent 12d8c8dc46
commit 2db20066b8
22 changed files with 195 additions and 8 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>