2020-09-19 11:28:47 -07:00
|
|
|
{{ define "main" }}
|
|
|
|
<div class="container mx-auto flex items-start">
|
|
|
|
<div class="w-8/12 mx-auto">
|
|
|
|
<header class="container mx-auto my-8 px-4">
|
|
|
|
{{ partial "docs/breadcrumb.html" . }}
|
|
|
|
|
2022-06-01 10:58:20 -07:00
|
|
|
|
2020-09-19 11:28:47 -07:00
|
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
|
|
|
|
{{ if .Params.description }}
|
|
|
|
<p class="text-xl my-8">
|
|
|
|
{{ .Params.description }}
|
|
|
|
</p>
|
|
|
|
{{ end }}
|
|
|
|
</header>
|
|
|
|
{{ partial "learn/media" (dict "context" .) }}
|
|
|
|
<section class="container mx-auto my-8 px-4">
|
|
|
|
{{ .Content }}
|
|
|
|
</section>
|
|
|
|
<section class="container mx-auto px-4">
|
|
|
|
<div class="md:flex">
|
|
|
|
<div class="md:w-2/3">
|
2021-11-08 16:04:20 -06:00
|
|
|
<h4 class="mb-4">In this pathway, you'll learn:</h4>
|
2020-09-19 11:28:47 -07:00
|
|
|
<ul class="list-none p-0">
|
|
|
|
{{ range .Params.youll_learn }}
|
|
|
|
<li>
|
|
|
|
<i class="fas fa-check text-green-500 mr-2"></i>
|
|
|
|
<span>{{ . }}</span>
|
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<div class="md:w-1/3">
|
2021-07-29 08:59:09 -07:00
|
|
|
<div class="rounded bg-gray-100 py-4 px-6 border-gray-300">
|
2022-06-01 10:58:20 -07:00
|
|
|
{{ partial "learn/summary" (dict "module" .) }}
|
2020-09-19 11:28:47 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<section class="container mx-auto py-8 px-4">
|
2021-11-08 16:04:20 -06:00
|
|
|
<h4 class="mb-4">Tutorials</h4>
|
2020-09-19 11:28:47 -07:00
|
|
|
<div class="p-0 mb-12">
|
|
|
|
{{ partial "learn/topics" (dict "context" . "module" .) }}
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|