Merge pull request #50925 from jeefy/careers-page
Add gitjobs embed to create a Kubernetes Careers pagepull/51213/head
commit
d191629db6
|
@ -0,0 +1,22 @@
|
||||||
|
---
|
||||||
|
title: Careers
|
||||||
|
bigheader: Careers in Kubernetes
|
||||||
|
abstract: Jobs focused on Kubernetes and Cloud Native Patterns
|
||||||
|
class: gridPage
|
||||||
|
cid: careers
|
||||||
|
body_class: careers
|
||||||
|
menu:
|
||||||
|
main:
|
||||||
|
weight: 70
|
||||||
|
---
|
||||||
|
|
||||||
|
<div align="center">
|
||||||
|
<iframe id="gitjobs" src="https://gitjobs.dev/embed?ts_query=kubernetes" style="width:100%;max-width:870px;height:100%;display:block;border:none;"></iframe>
|
||||||
|
<div>Powered by <a href="https://gitjobs.dev" target="_blank">GitJobs</a></div>
|
||||||
|
<p> </p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script type="module">
|
||||||
|
import { initialize } from "https://cdn.jsdelivr.net/npm/@open-iframe-resizer/core@latest/dist/index.js";
|
||||||
|
initialize({}, "#gitjobs");
|
||||||
|
</script>
|
|
@ -53,6 +53,9 @@ menu:
|
||||||
<div class="community-nav-item">
|
<div class="community-nav-item">
|
||||||
<a href="/releases">Releases</a>
|
<a href="/releases">Releases</a>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="community-nav-item">
|
||||||
|
<a href="/case-studies">Case Studies</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="community-section" id="gallery">
|
<div class="community-section" id="gallery">
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
<ul class="navbar-nav mt-lg-0">
|
<ul class="navbar-nav mt-lg-0">
|
||||||
{{ $p := . -}}
|
{{ $p := . -}}
|
||||||
{{/* The below code needs to be aligned to Docsy to use the menu data from the front matter wherever possible */}}
|
{{/* The below code needs to be aligned to Docsy to use the menu data from the front matter wherever possible */}}
|
||||||
{{ $sections := slice "docs" "blog" "training" "partners" "community" "case-studies" }}
|
{{ $sections := slice "docs" "blog" "training" "careers" "partners" "community" }}
|
||||||
{{ range $sections }}
|
{{ range $sections }}
|
||||||
{{ with site.GetPage "section" . }}
|
{{ with site.GetPage "section" . }}
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
||||||
|
|
Loading…
Reference in New Issue