-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* New learn page Signed-off-by: Marc Duiker <[email protected]> * Update announcement Signed-off-by: Marc Duiker <[email protected]> * Update Uni summary Signed-off-by: Marc Duiker <[email protected]> * Update footer Signed-off-by: Marc Duiker <[email protected]> --------- Signed-off-by: Marc Duiker <[email protected]>
- Loading branch information
1 parent
c83b4be
commit 3023da9
Showing
4 changed files
with
125 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
title: "Learn Dapr" | ||
description: "Learn to build and run distributed applications with Dapr." | ||
draft: false | ||
|
||
learn: | ||
|
||
- title: "Concepts" | ||
summary: "Learn the core concepts of Dapr through the Dapr docs. Learn about the Dapr runtime, the building block APIs, components, and cross-cutting concerns that Dapr provides out of the box." | ||
cta : | ||
enable : true | ||
label : "Learn the Dapr Concepts" | ||
link : "https://docs.dapr.io/concepts/" | ||
|
||
- title: "Getting Started" | ||
summary: "Use the _Getting Started_ guide in the docs to install Dapr locally and interact with the Dapr sidecar using the State Management API." | ||
cta : | ||
enable : true | ||
label : "Get started with Dapr" | ||
link : "https://docs.dapr.io/getting-started/" | ||
|
||
- title: "Quickstarts" | ||
summary: "Try the different building block APIs by running Dapr applications locally. The Quickstarts are available in multiple languages including .NET, Java, Python, JavaScript, and Go." | ||
cta : | ||
enable : true | ||
label : "Try the Dapr Quickstarts" | ||
link : "https://docs.dapr.io/getting-started/quickstarts/" | ||
|
||
- title: "Dapr University" | ||
summary: "Learn Dapr through Dapr University, a free, self-paced learning program that provides hands-on courses to learn Dapr. It uses a cloud-based sandbox environment, so it requires no local setup, you only need a browser. Dapr University is community sponsored by Diagrid." | ||
cta : | ||
enable : true | ||
label : "Try the Dapr University courses" | ||
link : "https://www.diagrid.io/dapr-university" | ||
|
||
|
||
--- |
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,71 @@ | ||
{{ define "main" }} | ||
|
||
{{ partial "page-header.html" . }} | ||
|
||
{{ with .Params }} | ||
{{ if .learn }} | ||
<section class="bg-light"> | ||
<div class="width-80 vertical-align-center"> | ||
<div class="grid grid-column-auto grid-spacing padding-top-down-30"> | ||
{{ range .learn }} | ||
<div class="feature-card"> | ||
<h3>{{ .title }}</h3> | ||
<div class="border-decoration"> | ||
<p>{{ .summary | markdownify }}</p> | ||
</div> | ||
<div class="flex-left padding-top-down-10 gap-xsm"> | ||
<a href="{{ .cta.link | absURL }}"><button class="btn-feature btn-secondary btn-md">{{ .cta.label }}</button></a> | ||
</div> | ||
</div> | ||
{{ end }} | ||
</div> | ||
</div> | ||
</section> | ||
{{ end }} | ||
{{ end }} | ||
|
||
|
||
|
||
<!-- panel --> | ||
{{ with .Params.panel }} | ||
<section class="bg-light padding-top-80"> | ||
<div class="padding-bottom-20"> | ||
<h2 class="text-center">{{ .title | title }}</h2> | ||
{{with .video}} | ||
<div class="text-center"> | ||
<iframe width="860" height="515" src="{{ . | safeURL }}" title="YouTube video player" class="iframe" | ||
frameborder="0" | ||
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" | ||
allowfullscreen></iframe> | ||
</div> | ||
{{end}} | ||
</div> | ||
</section> | ||
{{ end }} | ||
<!-- /panel --> | ||
|
||
<!-- call to action --> | ||
{{ with .Params.cta }} | ||
<section class="section"> | ||
<div class="feature-card width-60 vertical-align-center width-80-mobile"> | ||
<div class="flex align-items-center justify-content-center gap-md column-mobile"> | ||
<div> | ||
<img src="{{ .image | absURL }}" class="img-fluid" width="200px"> | ||
</div> | ||
<div class="text-center-mobile"> | ||
<h2>{{ .title | markdownify }}</h2> | ||
{{with .content }}<p class="mb-4">{{ . | markdownify }}</p>{{ end }} | ||
{{ if .button.enable }} | ||
{{ with .button }} | ||
<a href="{{ .link | absURL }}" | ||
class="btn btn-primary stretched-link"><button class="btn-primary btn-md">{{ .label }}</button></a> | ||
{{ end }} | ||
{{ end }} | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
{{ end }} | ||
<!-- /call to action --> | ||
|
||
{{ end }} |