-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtechnology.html
33 lines (33 loc) · 1.58 KB
/
technology.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
---
layout: naked
title: Technology
---
<div class="row">
<div class="col-md-12">
<div class="page-header">
<h1>Technology <small>and other such noise</small></h1>
</div>
<p>I'm a software engineer by trade, specialising in node.js and backend technology. That will be my focus
but I also run the business, so I might post some business chat too.</p>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h2>Latest blog posts</h2>
{% for post in site.categories["technology"] %}
<div class="media technology" itemid="{{ post.id }}" itemscope itemtype="http://schema.org/BlogPosting">
<div class="media-body">
<h2 class="media-heading" itemprop="headline"><a href="{{ post.url }}" itemprop="url">{{ post.title }}</a></h2>
<p><time class="label label-default" itemprop="datePublished" datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date_to_long_string }}</time>
{% for category in post.categories %}<a class="label label-primary" href="/{% if site.my_categories contains category %}{{ category }}{% else %}other{% endif %}.html">{{ category }}</a> {% endfor %}
{% for tag in post.tags %}<a class="label label-info" href="/tag/{{ tag }}.html" itemprop="keywords">{{ tag }}</a> {% endfor %}
<span itemprop="author publisher" itemscope itemtype="http://schema.org/Person">
by <a itemprop="name" href="{{ site.url }}">Simon Mayes</a> (<a href="https://twitter.com/msyea">@msyea</a>)
</span>
</p>
<div itemprop="description">{{ post.excerpt }}</div>
</div>
</div>
{% endfor %}
</div>
</div>