Skip to content
This repository has been archived by the owner on Aug 15, 2022. It is now read-only.

Commit

Permalink
Merge pull request #5 from CannonLock/job-posting
Browse files Browse the repository at this point in the history
Job posting
  • Loading branch information
CannonLock authored Apr 11, 2022
2 parents d0205b5 + dd6f36d commit 4e1fe35
Show file tree
Hide file tree
Showing 7 changed files with 94 additions and 41 deletions.
4 changes: 4 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ include:
- .well-known
- .nojekyll


exclude:
- _spotlights/images

defaults:
- scope:
path: ""
Expand Down
4 changes: 3 additions & 1 deletion _includes/get/news.liquid
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
{% comment %}
Use this to filter out the redirects
{% endcomment %}
{% assign news = site.news | where_exp: "news", "news.layout != 'blank'" | sort: "date" | reverse %}
{% include get/news_articles.liquid %}

{% assign news = news_articles | where_exp: "news", "news.layout != 'blank'" | sort: "date" | reverse %}
8 changes: 8 additions & 0 deletions _includes/get/news_articles.liquid
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{% assign now = "now" | date: "%s" %}
{% assign news_articles = "" | split : "" %}
{% for story in site.news %}
{% if story.remove_on > now or story.remove_on == nil %}
{% assign news_articles = news_articles | push: story %}
{% endif %}
{% endfor %}
{% assign news_articles = news_articles | sort: "date" | reverse %}
3 changes: 3 additions & 0 deletions _layouts/posts.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ <h1>{{ page.title }}</h1>
{% if page.author %}
<h5>By: {{page.author}}</h5>
{% endif %}
{% if page.collection == "news" %}
<h4 class="text-muted">{{ page.date | date: "%B %e, %Y" }}</h4>
{% endif %}
</div> <!-- title-head -->
{% endif %}

Expand Down
31 changes: 31 additions & 0 deletions _news/2022-04-05-new-hires.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
title: "New Full-Time Positions: Research Systems Administrators"
excerpt: |
Join the Center for High Throughput Computing (CHTC) as a Research Systems
Administrator working on the next generation of large-scale distributed computing
actively used by many of the largest science projects in the world!
remove_on: "1651294500"
---
<p>
Join the <a href="https://chtc.cs.wisc.edu/">Center for High Throughput Computing (CHTC)</a> as a Research Systems
Administrator working on the next generation of large-scale distributed computing
actively used by many of the largest science projects in the world!
</p>

<p><b>We have two opportunities for candidates of varying experience!</b></p>

<p>
For a candidate with existing systems administration experience looking
to build their skills in managing large-scale Linux systems using
a variety of cutting edge tools.
</p>
<a class="btn btn-primary mt-1" href="https://jobs.hr.wisc.edu/en-us/job/513190/research-systems-administrator">
View Full Job Posting
</a>
<p class="mt-3">
For a recent graduate looking to gain valuable experience managing large-scale Linux
systems using Kubernetes and Puppet.
</p>
<a class="btn btn-primary mt-1" href="https://jobs.hr.wisc.edu/en-us/job/513189/research-systems-administrator">
View Full Job Posting
</a>
45 changes: 45 additions & 0 deletions _news/2022-04-10-HTCondor_Week_2022_registration.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
---
title: Registration for HTCondor Week 2022 now open!
excerpt: |
Registration for HTCondor Week 2022 is open now. The registration
deadline for in-person attendee is May 2, 2022, and the cost is $90 per day.
For virtual-only attendance, registration is a flat $25 fee for the whole week.
---

<p>
Our annual <a href="http://htcondor.org/HTCondorWeek2022">HTCondor Week</a>
user conference will take place from May 23-26. This year,
HTCondor Week will be a hybrid event: we are hosting an in-person meeting at
the Fluno Center on the University of Wisconsin-Madison campus. This provides
HTCondor Week attendees with a compelling environment in which to attend tutorials and talks from
HTCondor developers, meet other users like you and attend social events. For
those who cannot attend in person, we'll also be broadcasting the event online
via Zoom.
</p>
<div class="bg-light p-3 mb-3">
<p>
Registration for HTCondor Week 2022 is open now. The registration
deadline for in-person attendee is May 2, 2022, and the cost is $90 per day.
For virtual-only attendance, registration is a flat $25 fee for the whole week.
</p>
<div class="row justify-content-center">
<div class="col-auto">
<a class="btn btn-secondary" href="https://agenda.hep.wisc.edu/event/1733/page/35-registration">Register Now</a>
</div>
</div>
</div>
<p>
We will have a variety of in-depth tutorials and talks where you
can learn more about HTCondor and how other people are using and deploying HTCondor. Best of all, you can establish contacts and learn best practices from people in industry, government, and academia who are using HTCondor to solve hard problems, many of which
may be similar to those you are facing.
</p>
<h5 class="pb-3 pt-1">The call for abstracts is open!</h5>
<p>
We'd love to have you give a talk at HTCondor Week. Talks are 15-20 minutes long and are a
great way to share your ideas and get feedback from the community. If you have a compelling
use of HTCondor you'd like to share, see our <a href="https://agenda.hep.wisc.edu/event/1733/abstracts/">Speaker Information page</a>
</p>
<p>
Hotel information and an agenda overview can be found on the
<a href="http://htcondor.org/HTCondorWeek2022">event homepage</a>.
</p>
40 changes: 0 additions & 40 deletions _news/hiring_2022_01_28.md

This file was deleted.

0 comments on commit 4e1fe35

Please sign in to comment.