Skip to content

Commit bb7b1f5

Browse files
Merge branch 'layer5io:master' into Fix-Warnings
2 parents c2cf65e + ea0628a commit bb7b1f5

280 files changed

Lines changed: 2241 additions & 760 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 1 addition & 0 deletions
Loading

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,17 @@ alt="Meshery Catalog" align="left" />
134134
<br /><br /><br />
135135
</p>
136136

137+
<!-- Layer 5 academy -->
138+
<p style="clear:both;">
139+
<h2><a href="https://cloud.layer5.io/academy">Layer5 Academy</a></h2>
140+
<a href="https://cloud.layer5.io/academy">
141+
<img src=".github/assets/images/Layer5Academy/academy.svg" style="margin:10px;" width="125px" alt="Layer5 Academy" align="left" />
142+
</a>
143+
<a href="https://cloud.layer5.io/academy">Layer5 Academy</a> Layer5 Academy is a learning platform built into Layer5 Cloud. It offers structured learning paths, interactive challenges, and professional certifications. Content spans beginner to advanced levels, helping both developers and organizations skill up in cloud native technologies.
144+
<br /><br /><br/>
145+
</p>
146+
<br />
147+
137148
<p style="clear:both;">
138149
<h1><a name="contributing"></a><a name="community"></a> <a href="https://layer5.io/community">Community</a> and <a href="https://layer5.io/community/handbook">Contributions</a></h1>
139150
<p> We warmly welcome all contributors! Our projects are community-built and each welcomes open collaboration. As you get started, please review this project's <a href="https://github.com/layer5io/layer5/blob/master/CONTRIBUTING.md">contributing guidelines</a>. Whether you are a user or code contributor and whether you're opening an <a href="/../../issues">issue</a> or a <a href="/../../pulls">pull request</a>, know that any form of your engagement is considered contribution and is appreciated. Contributors are expected to adhere to the <a href="https://github.com/cncf/foundation/blob/master/code-of-conduct.md">CNCF Code of Conduct</a>.

gatsby-config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -541,8 +541,8 @@ module.exports = {
541541
{
542542
resolve: "gatsby-source-filesystem",
543543
options: {
544-
path: `${__dirname}/src/collections/service-mesh-labs`,
545-
name: "service-mesh-labs",
544+
path: `${__dirname}/src/collections/kanvas-labs`,
545+
name: "kanvas-labs",
546546
},
547547
},
548548
{

gatsby-node.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ exports.createPages = async ({ actions, graphql, reporter }) => {
173173
}
174174
}
175175
labs: allMdx(
176-
filter: { fields: { collection: { eq: "service-mesh-labs" } } }
176+
filter: { fields: { collection: { eq: "kanvas-labs" } } }
177177
) {
178178
nodes {
179179
fields {
@@ -576,7 +576,7 @@ exports.onCreateNode = ({ node, actions, getNode }) => {
576576
break;
577577
case "service-mesh-books":
578578
case "workshops":
579-
case "service-mesh-labs":
579+
case "kanvas-labs":
580580
slug = `/learn/${collection}/${slugify(node.frontmatter.title)}`;
581581
break;
582582
case "resources":

0 commit comments

Comments
 (0)