Skip to content

Add career section and job description #9

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -105,3 +105,10 @@ fabric.properties
!.idea/runConfigurations

# End of https://www.toptal.com/developers/gitignore/api/hugo,intellij+all

#Mac Files
.DS_Store
content/.DS_Store
static/.DS_Store
static/images/.DS_Store
static/images/team/.DS_Store
4 changes: 4 additions & 0 deletions config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@ enableRobotsTXT = false
name = "Team"
url = "/team/"
weight = 2
[[menu.main]]
name = "Career"
url = "/job/"
weight = 2

# Footer Menu
[[menu.footer]]
Expand Down
9 changes: 9 additions & 0 deletions content/job/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
title: 'Career'
intro_image_absolute: false
intro_image_hide_on_mobile: false
---

# Open Positions

We are always eager to meet fresh talent, so check out our open positions.
37 changes: 37 additions & 0 deletions content/job/backend_sde_1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
title: 'Software Development Engineer - 1 (Backend)'
date: 2023-06-01
draft: false
jobtitle: 'Software Development Engineer - 1 (Backend)'
weight: 1
promoted: false
name: 'backend_sde_1'
---

### Who are we ?

We are a young, rapidly growing technology consulting company that delivers business impacts through product engineering. We encourage a craft-focused, tinkering mindset with an emphasis on continuous learning, knowledge sharing while having a good balance between work and life. As thought leaders, we value ethical practices, quality, open-source principles, and diversity in our welcoming, and supportive environment. Guided by a flat structure, we offer ample opportunities for growth. At Infraspec, we not only embrace cutting-edge technologies, but also strive for sustainable, meaningful innovation. Join us on this journey towards technological excellence.

We are a team with past experience from Gojek, Navi, Swiggy, and Rapido. In the past 2 years we have successfully catered to clients like Vedantu, CRED, Zinc learning labs, and the fastest growing hyperlocal startup in India.


### What do you get ?

1. Top of the class working machine
2. Good Culture - Warm welcoming culture which thrives on continuous learning and challenging each other to become better every day.
3. Mentorship and a chance to grow professionally
4. A chance to have a significant impact on your career journey
5. As we are a young company you will be a significant contributor in defining and shaping the company culture.


### Band: SDE-1

1. You are able to solve problems using any programming language.
2. You are aware of the programming language constructs, time and space complexity.
3. You have a thorough understanding of computer science fundamentals in Database , Networks and Operating systems.
4. You are well aware of the data structures.
5. Bonus if you have experience with backend technologies and cloud.
6. You have knowledge of version control tools like git.
7. You have experience with any backend frameworks and understand MVC constructs.


1 change: 1 addition & 0 deletions data/contact.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
email: 'hey@infraspec.dev'
contact_button_link: 'contact'
apply: 'careers@infraspec.dev'
11 changes: 11 additions & 0 deletions layouts/job/apply.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<div class="call">
<div class="call-box-top">
{{ if .Site.Data.contact.apply }}
<div class="call-email"><strong>Please email your resume to </strong>
<a href="mailto:{{ .Site.Data.contact.apply }}">
{{ .Site.Data.contact.apply }}
</a>
</div>
{{ end }}
</div>
</div>
21 changes: 21 additions & 0 deletions layouts/job/list.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{{ define "body_classes" }}page-services-list{{ end }}

{{ define "main" }}
<div class="container">
<div class="row">
<div class="col-12 text-center mt-8">
{{ .Content }}
</div>
</div>
</div>

<div class="container pt-6 pb-6">
<div class="row">
{{ range .Pages.ByWeight }}
<div class="col-12">
<div>{{ .Render "summary" }}</div>
</div>
{{ end }}
</div>
</div>
{{ end }}
18 changes: 18 additions & 0 deletions layouts/job/single.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{{ define "body_classes" }}page-services-single{{ end }}

{{ define "main" }}
<div class="container pb-6 pt-6 pt-md-10 pb-md-10">
<div class="row justify-content-start">
<div class="col-12">
<div class="">
<h1 class="">{{.Title}}</h1>

<div class="">{{.Content}}</div>
</div>
</div>
<div class="col-12">
<div>{{ .Render "apply" }}</div>
</div>
</div>
</div>
{{ end }}
5 changes: 5 additions & 0 deletions layouts/job/summary.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<div class="team team-summary">
<div class="team-meta">
<a class="team-name" rel="noreferrer" href="{{ .Params.name }}"><h2>{{ .Title }}</h2></a>
</div>
</div>