|
15 | 15 | { |
16 | 16 | "@id": "https://csswizardry.com/#org", |
17 | 17 | "@type": "Organization", |
18 | | - "name": "CSS Wizardry Ltd.", |
| 18 | + "name": "CSS Wizardry Ltd", |
19 | 19 | "url": "https://csswizardry.com/", |
20 | 20 | "logo": { |
21 | 21 | "@type": "ImageObject", |
22 | 22 | "@id": "https://csswizardry.com/#logo", |
23 | 23 | "url": "https://csswizardry.com/icon.png", |
24 | | - "contentUrl": "https://csswizardry.com/icon.png" |
| 24 | + "contentUrl": "https://csswizardry.com/icon.png", |
| 25 | + "width": 128, |
| 26 | + "height": 128 |
25 | 27 | }, |
26 | 28 | "founder": { "@id": "https://csswizardry.com/#person" }, |
27 | 29 | "sameAs": [ |
|
33 | 35 | "contactPoint": [{ |
34 | 36 | "@type": "ContactPoint", |
35 | 37 | "contactType": "Sales", |
36 | | - "email": "mailto:csswizardry@gmail.com" |
| 38 | + "email": "csswizardry@gmail.com" |
37 | 39 | }] |
38 | 40 | }, |
39 | 41 |
|
|
43 | 45 | "name": "Harry Roberts", |
44 | 46 | "jobTitle": "Consultant Web-Performance Engineer", |
45 | 47 | "url": "https://csswizardry.com/about/", |
| 48 | + "image": "https://csswizardry.com/img/avatars/me.jpg", |
| 49 | + "sameAs": [ |
| 50 | + "https://twitter.com/csswizardry", |
| 51 | + "https://github.com/csswizardry", |
| 52 | + "https://www.linkedin.com/in/csswizardry/", |
| 53 | + "https://developers.google.com/profile/u/csswizardry" |
| 54 | + ], |
46 | 55 | "worksFor": { "@id": "https://csswizardry.com/#org" } |
47 | | - } |
| 56 | + }, |
48 | 57 |
|
| 58 | + { |
| 59 | + "@id": "https://csswizardry.com/#website", |
| 60 | + "@type": "WebSite", |
| 61 | + "name": "CSS Wizardry", |
| 62 | + "url": "https://csswizardry.com/", |
| 63 | + "publisher": { "@id": "https://csswizardry.com/#org" }, |
| 64 | + "inLanguage": "en-GB" |
| 65 | + }, |
| 66 | + |
| 67 | + { |
| 68 | + "@id": "https://csswizardry.com/#webpage", |
| 69 | + "@type": "WebPage", |
| 70 | + "url": "https://csswizardry.com/", |
| 71 | + "name": "Site-Speed Optimisation", |
| 72 | + "description": "Award-winning web performance consultant Harry Roberts helps global brands optimise site speed through audits, consultancy, and training.", |
| 73 | + "isPartOf": { "@id": "https://csswizardry.com/#website" }, |
| 74 | + "about": [ |
| 75 | + { "@id": "https://csswizardry.com/#org" }, |
| 76 | + { "@id": "https://csswizardry.com/#person" } |
| 77 | + ], |
| 78 | + "primaryImageOfPage": { "@id": "https://csswizardry.com/#logo" }, |
| 79 | + "inLanguage": "en-GB" |
| 80 | + } |
49 | 81 | ] |
50 | 82 | } |
51 | 83 | </script> |
@@ -105,6 +137,26 @@ <h3 class="post__title" style="view-transition-name: x-{{ post.date | date: '%Y- |
105 | 137 | {% endfor %} |
106 | 138 | </ul> |
107 | 139 |
|
| 140 | + <script type="application/ld+json"> |
| 141 | + { |
| 142 | + "@context": "https://schema.org", |
| 143 | + "@type": "ItemList", |
| 144 | + "name": "Recent articles", |
| 145 | + "itemListOrder": "https://schema.org/ItemListOrderDescending", |
| 146 | + "numberOfItems": {{ paginator.posts | size }}, |
| 147 | + "itemListElement": [ |
| 148 | + {% for post in paginator.posts %} |
| 149 | + { |
| 150 | + "@type": "ListItem", |
| 151 | + "position": {{ forloop.index }}, |
| 152 | + "url": "https://csswizardry.com{{ post.url }}", |
| 153 | + "name": {{ post.title | jsonify }} |
| 154 | + }{% unless forloop.last %},{% endunless %} |
| 155 | + {% endfor %} |
| 156 | + ] |
| 157 | + } |
| 158 | + </script> |
| 159 | + |
108 | 160 | {% include pagination.html %} |
109 | 161 |
|
110 | 162 | </section> |
|
0 commit comments