mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 09:37:26 +00:00
add location functionality to job postings and mark remote
This commit is contained in:
parent
7d2c5c5fa5
commit
4d7ea137e4
8 changed files with 10 additions and 0 deletions
|
@ -2,6 +2,7 @@
|
|||
title: API Engineer
|
||||
order: 5
|
||||
status: active
|
||||
location: remote
|
||||
url: https://hire.withgoogle.com/public/jobs/lbryio/view/P_AAAAAADAAADFYg8lMqDBXz?trackingTag=joinUs
|
||||
---
|
||||
This job combines the coolest language with a slightly less cool objective for an overall attractiveness quotient of still pretty neat.
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
title: Lead Application Engineer
|
||||
order: 2
|
||||
status: active
|
||||
location: remote
|
||||
url: https://hire.withgoogle.com/public/jobs/lbryio/view/P_AAAAAADAAADNhIbg93Flmj?trackingTag=joinUs
|
||||
---
|
||||
As the touch and interaction point for the vast majority of LBRY users, applications play a tremendous role in the success of the LBRY protocol.
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
title: Blockchain Engineer
|
||||
order: 1
|
||||
status: active
|
||||
location: remote
|
||||
url: https://hire.withgoogle.com/public/jobs/lbryio/view/P_AAAAAADAAADLZMs9Keowq0?trackingTag=joinUs
|
||||
---
|
||||
This position involves working directly on the LBRY [blockchain](https://github.com/lbryio/lbrycrd), written in C++.
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
title: Lead Designer
|
||||
order: 5
|
||||
status: paused
|
||||
location: remote
|
||||
url: https://hire.withgoogle.com/public/jobs/lbryio/view/P_AAAAAADAAADDIkS8VwCnPN?trackingTag=joinUs
|
||||
---
|
||||
Like designing things? Great, because this position involves designing all the things.
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
title: Project Manager
|
||||
order: 3
|
||||
status: active
|
||||
location: remote
|
||||
url: https://hire.withgoogle.com/public/jobs/lbryio/view/P_AAAAAADAAADDIQ-YUHEtOA?trackingTag=joinUs
|
||||
---
|
||||
Being a project manager at LBRY requires skillful facilitation and coaching of a menagerie of full-time engineers and community contributors. It demands the ability to break down big goals into practical plans and keep track of a wide variety of tasks and small details.
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
title: Protocol Engineer
|
||||
order: 4
|
||||
status: active
|
||||
location: remote
|
||||
url: https://hire.withgoogle.com/public/jobs/lbryio/view/P_AAAAAADAAADALc6v5NkAOf?trackingTag=joinUs
|
||||
---
|
||||
The LBRY protocol consists of a [set of APIs](https://lbry.io/api) provided via a daemon. This daemon is comprised of several sub-components, and interacts with the blockchain, wallet, and other remote daemons that constitute the LBRY data network.
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
title: Web Developer
|
||||
order: 10
|
||||
location: remote
|
||||
status: closed
|
||||
---
|
||||
We're seeking someone to manage [this very website](https://github.com/lbryio/lbry.io), as well as other LBRY web properties and projects.
|
||||
|
|
|
@ -3,6 +3,9 @@
|
|||
<?php if (isset($metadata['status'])): ?>
|
||||
<span class="badge <?php echo $metadata['status'] == "active" ? "badge-primary" : "badge-info" ?>"><?php echo $metadata['status'] ?></span>
|
||||
<?php endif ?>
|
||||
<?php if (isset($metadata['location']) && $metadata['location']): ?>
|
||||
<span class="badge"><?php echo $metadata['location'] ?></span>
|
||||
<?php endif ?>
|
||||
</h3>
|
||||
<?php if (isset($metadata['url'])): ?>
|
||||
<div class="spacer-half">
|
||||
|
|
Loading…
Add table
Reference in a new issue