index.html 639 B

1234567891011121314151617181920212223
  1. ---
  2. layout: default
  3. title : Radical Networks
  4. exclude_from_nav: true
  5. ---
  6. {% include base.html %}
  7. {% for post in site.posts %}
  8. <div class="post-div">
  9. <h2 class="post">{{ post.title }}</h2>
  10. <div class="date">
  11. <span>{{ post.date | date_to_long_string }}</span>
  12. </div>
  13. <div class="content">
  14. {{ post.content }}
  15. </div>
  16. <p>
  17. <a href="https://twitter.com/share" class="twitter-share-button" data-url="http://radicalnetworks.org{{ post.url }}.html" data-via="radnetworks">Tweet</a>
  18. </p>
  19. <p>
  20. <a href="{{ base }}{{ post.url }}.html">Read More &raquo;</a>
  21. </p>
  22. </div>
  23. {% endfor %}