Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. ---
  2. layout: default
  3. ---
  4.  
  5. <section class="posts postindex wrapper">
  6. {% for post in site.posts %}
  7. {% capture month %}{{ post.date | date: '%m%Y' }}{% endcapture %}
  8. {% capture nmonth %}{{ post.next.date | date: '%m%Y' }}{% endcapture %}
  9. {% if month != nmonth %}
  10. {% if forloop.index != 1 %}</ul>{% endif %}
  11. <h3 class="sub-header">{{ post.date | date: '%B %Y' }}</h3><ul>
  12. {% endif %}
  13. <h4><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h4>
  14. <span>
  15. Posted on <i class="fa fa-clock-o"></i><time datetime="{{ post.date | date: "%Y-%m-%d" }}">{{ post.date | date: "%B %-d, %Y" }}</time>.
  16. </span>
  17. {% endfor %}
  18.  
  19. </section>
  20.  
  21. <div class="profile">
  22. {% if site.logourl != "" %}<img src="{{ site.logourl }}" class="profileimage" alt="user">{% endif %}
  23. <h4>{{ site.title }}</h4>
  24. <p>{{ site.description }}</p>
  25. <hr>
  26. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement