-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive.html
34 lines (26 loc) · 1.05 KB
/
archive.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
layout: default
title: Daniel Bower – Archive
permalink: /archive/
---
<div>
<h2>Archive</h2>
<p>I have been blogging since 2004 using various different domains and publishing platforms – hands up if you
remember Typepad?!</p>
<p>I blog about anything that takes my fancy, however they tend to be related to my work as an entreprenuer and
product manager and also my research into the political economy of startups, technology platforms and music.</p>
<p>I also like
to share interesting links on my blog along with some brief notes. You can find all of them on <a
href="/link-rolling/">Link Rolling.</p>
<hr>
<section class="archive_list">
{% for post in site.posts %}
{% unless post.title == "Link roll" %}
<div class="post_title">
<a href="{{ post.url | prepend: site.baseurl }}">{{ post.title}}</a>
<span class="date">{{ post.date | date: "%-d %b, %Y" }}</span>
</div>
{% endunless %}
{% endfor %}
</section>
</div>