index.html 595 B

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