1234567891011121314151617181920212223 |
- ---
- layout: default
- title : Radical Networks
- exclude_from_nav: true
- ---
- {% include base.html %}
- {% for post in site.posts %}
- <div class="post-div">
- <h2 class="post">{{ post.title }}</h2>
- <div class="date">
- <span>{{ post.date | date_to_long_string }}</span>
- </div>
- <div class="content">
- {{ post.content }}
- </div>
- <p>
- <a href="https://twitter.com/share" class="twitter-share-button" data-url="http://radicalnetworks.org{{ post.url }}.html" data-via="radnetworks">Tweet</a>
- </p>
- <p>
- <a href="{{ base }}{{ post.url }}.html">Read More »</a>
- </p>
- </div>
- {% endfor %}
|