-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·77 lines (64 loc) · 2.22 KB
/
index.html
File metadata and controls
executable file
·77 lines (64 loc) · 2.22 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
---
layout: default
title: Mark Wright
---
<div class="container">
<div class="row">
<div class="five columns">
<div class="description">
<h1 class="visually-hidden">Mark Wright dot com</h1>
<p>Mark Wright is an interaction designer. He is working for <a href="https://opencastsoftware.com/">Opencast</a>.</p>
<p>He has worked on services for <a href="https://www.gov.uk/government/organisations/hm-revenue-customs" target="_blank">HM Revenue and Customs</a>, <a href="https://www.nhsbsa.nhs.uk/" target="_blank">NHS Business Services Authority</a>, <a href="https://www.ofgem.gov.uk/" target="_blank">Ofgem</a> and more.</p>
<p>
You can find them on
<a href="https://twitter.com/mrkwrght" target="_blank">Twitter</a>,
<a href="https://www.linkedin.com/in/mrkwrght" target="_blank">LinkedIn</a>
and
<a href="https://github.com/mrkwrght" target="_blank">Github</a>.
</p>
</div>
</div>
<div class="seven columns">
<div class="list">
{% if site.posts.size == 0 %}
<h2>No post found</h2>
{% else %}
<!-- This loops through the paginated posts -->
{% for post in paginator.posts %}
<div class="list-post">
{% if post.link %}
<a href="{{ post.link }}">
{% else %}
{% endif %}
<div class="list-post-date" style="color:#F2F2F2;; font-weight: bold;" >
<time>{{ post.date | date_to_long_string }}</time>
</div>
<h2 class="list-post-title" style="color:#F2F2F2;;">
<a href="{{ post.url | prepend: site.baseurl }}" style=" line-height: 2;">{{ post.title }}</a>
</h2>
</div>
{% endfor %}
<!-- Pagination links -->
<div class="list-pagination">
<span class="list-pagination-previous">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path | prepend: site.baseurl }}" class="previous">
< Previous
</a>
{% else %}
{% endif %}
</span>
<span class="list-pagination-next">
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path | prepend: site.baseurl }}" class="next">
Next >
</a>
{% else %}
{% endif %}
</span>
</div>
{% endif %}
</div>
</div>
</div>
</div>