Skip to content

docs(NODE-5540): Fix MDB University links in GH pages #3814

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions etc/docs/template/layouts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,13 @@
{{ partial "features.html" . }}

{{ partial "quickStart.html" . }}

<hr/>

{{ partial "mongodbUniversity.html" . }}
</div>
<div class="col-md-4">
{{ partial "releases.html" . }}
{{ partial "mongodbUniversity.html" . }}
{{ partial "releases.html" . }}
</div>
</div>
</div>
Expand Down
21 changes: 13 additions & 8 deletions etc/docs/template/layouts/partials/mongodbUniversity.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
<section id="universityPromo">
<h3><span>MongoDB University</span></h3>

<h4>M101JS: MongoDB for Node.JS Developers</h4>
<p>Learn everything you need to know to get started building a MongoDB-based app. From basic installation, JSON, schema design, querying, insertion of data, indexing and working with the Node.JS driver.
</p>
<p>
<a href="https://university.mongodb.com/courses/M101JS/about" target="_blank" class="btn btn-success btn-mongo">Learn More</a>
</p>
<h3><span>MongoDB University</span></h3>
<br/>
<h4>Using MongoDB with Node.js</h4>
<p>This course guides you through everything you need to get started with MongoDB in your NodeJS applications. In this course, you’ll get an overview of the official MongoDB NodeJS/Javascript driver and learn how to install it by using npm. You’ll learn how to connect your application, perform basic CRUD operations, troubleshoot, and then build aggregations.</p>
<p>
<a href="https://learn.mongodb.com/learning-paths/using-mongodb-with-nodejs" target="_blank" class="btn btn-success btn-mongo">Learn More</a>
</p>
<br/>
<h4>MongoDB Node.js Developer Path</h4>
<p>This learning path contains a series of courses to teach you MongoDB skills. In this path, you’ll learn the basics of building modern applications with Node.JS, using MongoDB as your database.</p>
<p>
<a href="https://learn.mongodb.com/learning-paths/mongodb-nodejs-developer-path" target="_blank" class="btn btn-success btn-mongo">Learn More</a>
</p>
</section>