22layout: page
33title: "News"
44permalink: /news/
5+ pagination:
6+ enabled: true
7+ category: News
8+ sort_reverse: true
9+ permalink: '/:num/'
510---
611
712< h2 class ="wp-block-heading "> Check out our recent news & insights</ h2 >
813
914< div class ="wp-block-query is-layout-flow wp-block-query-is-layout-flow ">
1015 < ul
1116 class ="columns-3 wp-block-post-template is-layout-grid wp-container-core-post-template-is-layout-1 wp-block-post-template-is-layout-grid ">
12- {% for post in site.categories.News %}
17+ {% for post in paginator.posts %}
1318 < li
1419 class ="wp-block-post post-350 post type-post status-publish format-standard has-post-thumbnail hentry category-news ">
1520
1621 < div class ="wp-block-group is-layout-flow wp-container-core-group-is-layout-7 wp-block-group-is-layout-flow "
1722 style ="padding-top:20px;padding-right:20px;padding-bottom:20px;padding-left:20px ">
23+ {% if post.featured_image %}
1824 < figure style ="height:200px; margin-bottom:var(--wp--preset--spacing--small); "
19- class ="wp-block-post-featured-image "> < a
20- href ="{{ post.url | relative_url }} " target ="_self "
21- style ="height:200px "> < img fetchpriority ="high " decoding ="async " width ="1530 " height ="520 "
25+ class ="wp-block-post-featured-image "> < a href ="{{ post.url | relative_url }} " target ="_self "
26+ style ="height:200px "> < img
2227 src ="{{ post.featured_image | prepend: '/assets/images/' | relative_url }} "
2328 class ="attachment-post-thumbnail size-post-thumbnail wp-post-image "
24- alt ="SpecFlow end-of-life has been announced " style ="border-radius:5px;height:200px;object-fit:cover; "
25- sizes ="(max-width: 1530px) 100vw, 1530px "> </ a > </ figure >
29+ alt ="{{ post.title }} " style ="border-radius:5px;height:200px;object-fit:cover; "> </ a >
30+ </ figure >
31+ {% else %}
32+ < div class ="missing-image "> </ div >
33+ {% endif %}
2634
2735 < div class ="taxonomy-category has-link-color wp-elements-82b5603708064b06546400967d8e01c5 wp-block-post-terms ">
28- < a href ="{{ site.url }}/news/ " rel ="tag "> News</ a > </ div >
36+ < a href ="{{ site.url }}/{{ post.categories | first | downcase }}/ " rel ="tag "> {{post.categories | first}}</ a >
37+ </ div >
2938
3039 < h5 style ="margin-bottom:var(--wp--preset--spacing--x-small); " class ="wp-block-post-title "> < a
3140 href ="{{ post.url | relative_url }} " target ="_self "> {{ post.title }}</ a > </ h5 >
@@ -36,13 +45,31 @@ <h5 style="margin-bottom:var(--wp--preset--spacing--x-small);" class="wp-block-p
3645 < div class ="wp-block-post-author-name has-x-small-font-size "> {{ post.author }}</ div >
3746
3847 < hr
39- class ="wp-block-separator has-text-color has-highlight-color has-alpha-channel-opacity has-highlight-background-color has-background is-style-default wp-container-content-3 ">
48+ class ="wp-block-separator has-text-color has-highlight-color has-alpha-channel-opacity has-highlight-background-color has-background is-style-default wp-container-content-3 ">
4049
4150 < div class ="wp-block-post-date "> {{ post.date | date: "%B %-d, %Y" }}</ div >
4251 </ div >
4352 </ div >
4453
4554 </ li >
4655 {% endfor %}
47- </ ul >
56+ </ ul >
4857</ div >
58+
59+
60+ {% if paginator.total_pages > 1 %}
61+ < ul >
62+ {% if paginator.previous_page %}
63+ < li >
64+ < a href ="{{ paginator.previous_page_path | prepend: site.baseurl }} "> ← Newer</ a >
65+ </ li >
66+ {% endif %}
67+ {% if paginator.next_page %}
68+ < li >
69+ < a href ="{{ paginator.next_page_path | prepend: site.baseurl }} "> Older →</ a >
70+ </ li >
71+ {% endif %}
72+ </ ul >
73+ {% endif %}
74+
75+ < p class ="rss-subscribe "> subscribe < a href ="{{ "/feed.xml" | relative_url }}"> via RSS</ a > </ p >
0 commit comments