Created
April 5, 2013 09:56
-
-
Save satooshi/5318094 to your computer and use it in GitHub Desktop.
custom/asides/analytics_popular_posts.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<section> | |
<h1>Popular Posts</h1> | |
<ul id="popular_posts"> | |
{% for post in site.popular_posts limit: 10 %} | |
<li class="post"> | |
<a href="{{ post.url }}">{{ post.title }}</a> | |
</li> | |
{% endfor %} | |
</ul> | |
</section> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment