-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from Kuadrant/blog-init
Add blog nav with initial post
- Loading branch information
Showing
10 changed files
with
187 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
layout: layout.njk | ||
--- | ||
<h1>{{ title }}</h1> | ||
<h4> | ||
<ul class="post-metadata"> | ||
<li>By: {{ author }} | <time datetime="{{ page.date | htmlDateString }}">{{ page.date | readableDate }}</time></li> | ||
</ul> | ||
</h4> | ||
{{ content | safe }} | ||
|
||
{%- if collections.posts %} | ||
{%- set previousPost = collections.posts | getPreviousCollectionItem %} | ||
{%- set nextPost = collections.posts | getNextCollectionItem %} | ||
{%- if nextPost or previousPost %} | ||
<ul class="links-nextprev"> | ||
{%- if previousPost %}<li>Previous: <a href="{{ previousPost.url }}">{{ previousPost.data.title }}</a></li>{% endif %} | ||
{%- if nextPost %}<li>Next: <a href="{{ nextPost.url }}">{{ nextPost.data.title }}</a></li>{% endif %} | ||
</ul> | ||
{%- endif %} | ||
{%- endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{% set groupedPosts = postslist | groupByYear %} | ||
{% for group in groupedPosts %} | ||
<h3>{{group.year}}</h3> | ||
<ul reversed class="postlist"> | ||
{% for post in group.posts | reverse %} | ||
<li class="postlist-item{% if post.url == url %} postlist-item-active{% endif %}"> | ||
<a href="{{ post.url }}" class="postlist-link">{% if post.data.title %}{{ post.data.title }}{% else %}<code>{{ post.url }}</code>{% endif %}</a> | ||
<time class="postlist-date" datetime="{{ post.date | htmlDateString }}">{{ post.date | readableDate("LLLL yyyy") }}</time> | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
|
||
{% endfor %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
layout: layout.njk | ||
tags: blog-page # Note: This adds a custom class to layout.njk | ||
title: Blog | ||
eleventyNavigation: | ||
key: Blog | ||
order: 1 | ||
icon: bx-notepad | ||
numberOfLatestPostsToShow: 5 | ||
--- | ||
|
||
{% set postslist = collections.posts %} | ||
{% include "postslist.njk" %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module.exports = { | ||
tags: [ | ||
"posts" | ||
], | ||
"layout": "layouts/post.njk", | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
title: Kuadrant Accepted as Cloud Native Computing Foundation (CNCF) Sandbox Project | ||
date: 2024-08-02 | ||
author: David Martin | ||
--- | ||
As of June 2024, Kuadrant has been [accepted](https://github.com/cncf/sandbox/issues/80) as a [sandbox project](https://www.cncf.io/projects/kuadrant/) in the CNCF. | ||
The [CNCF Sandbox](https://www.cncf.io/sandbox-projects/) is the entry point for early-stage projects. | ||
This is a significant move towards building the Kuadrant community and aligns well with how existing CNCF and open source projects are used in Kuadrant. | ||
|
||
Kuadrant is a set of Kubernetes-native controllers, services and APIs that provide gateway policies for existing [Gateway API](https://gateway-api.sigs.k8s.io/) providers on both single and multi-cluster environments. It builds on top of Kubernetes Gateway API and technologies such as Istio and Envoy to introduce provider-agnostic Gateway Policies for Kubernetes. | ||
|
||
The project provides the ability to connect ingress gateways upwards with Cloud DNS and Load Balancing providers, to set policies inwards with TLS and advanced (L7) service protection such as Auth and Rate limiting and to propagate desired gateway configurations downwards across multi-cluster environments. | ||
|
||
A high level introduction to the project is available through a short video published on the project's [YouTube channel](https://www.youtube.com/watch?v=euWAMvQojP4). | ||
|
||
Since the Kuadrant project began, there have been [numerous releases](https://github.com/Kuadrant/kuadrant-operator/releases), with the most recent release of 0.9.0 being finalised. | ||
|
||
We are always looking for ways to extend the community and help people to contribute. | ||
To find out more about how to help: | ||
|
||
* Check out the [documentation](https://docs.kuadrant.io). | ||
* Explore the Kuadrant [repositories](https://github.com/kuadrant/). | ||
* Engage with the [community](https://kuadrant.io/community/). | ||
* Follow the [onboarding process](https://github.com/cncf/toc/issues/1372) as we complete the transition to CNCF and evolve [Kuadrant governance](https://github.com/Kuadrant/governance). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters