-
Notifications
You must be signed in to change notification settings - Fork 90
/
index.html
81 lines (55 loc) · 1.96 KB
/
index.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
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
78
79
80
81
---
layout: landing
title: Site-Speed Optimisation
masthead-title: Web Performance Optimisation, Consultancy, and Engineering
page-class: page--home
meta: "Web Performance Optimisation, Engineering, and Consultancy"
lux: Home
---
<!--
- Jump straight back out of wrapper mode on the home page.
-->
</div><!-- /wrapper -->
{% include promo-home.html %}
{% include client-list.html %}
{% include carousel.html %}
<div class=wrapper>
<div class="layout layout--large">
<div class="layout__item lap-and-up-one-half desk-two-thirds" data-ui-component="Main content">
<section class=post id=section:articles>
<h3 class=heading>Articles</h3>
<p>There are <b>{{ site.posts | size }}</b> articles on this blog.
Find them all on the <a href="/archive/">archive page</a>.</p>
{% if paginator.page != 1 %}
{% include pagination.html %}
{% endif %}
<ul class="list-ui post__list mb">
{% for post in paginator.posts %}
<li class=list-ui__item>
{% if forloop.first == true %}
<script type="speculationrules">
{
"prerender": [
{
"source": "list",
"urls": [ "{{ post.url }}" ]
}
]
}
</script>
{% endif %}
<time class="post__date" datetime="{{ post.date | date: "%Y-%m-%d" }}">{{ post.date | date: "%-d %B, %Y" }}</time>
<h3 class="post__title"><a href="{{ post.url }}" style="view-transition-name: x-{{ post.date | date: '%Y-%m-%d' }}">{{ post.title }}</a></h3>
</li>
{% endfor %}
</ul>
{% include pagination.html %}
</section>
<script>performance.mark('contentEnd')</script>
</div
><div class="layout__item lap-and-up-one-half desk-one-third" data-ui-component="Sub content">
<div class="[ box box--highlight ] mb">
{% include sub-content.html %}
</div>
</div>
</div>