Skip to content
Snippets Groups Projects
Commit fd28725b authored by Allan Blanchard's avatar Allan Blanchard
Browse files

List jobs in events

parent f70e12c3
No related branches found
No related tags found
1 merge request!3Start the COLIBRI manual in the website
---
layout: job
title: Permanent Position at CEA LIST - LSL
position: Engineer/Researcher
duration: Permanent
short: Develop and extend the applicability of Frama-C for cybersecurity purposes
posted: 08-07-2021
date: 08-07-2021
keywords: cybersecurity, software analysis, formal methods, open source
link: /jobs/2021-07-08-permanent-engineer-researcher-cyber-security-verification.html
---
#### Mission
......
---
layout: job
title: <Postdoc, Permanent, Intern, ...> Position at CEA LIST - LSL
position: <Postdoc, Research Engineer, Intern, ...>
duration: <N-months, Permanent>
short: <short description (visible on "contact" page)>
posted: 06-04-2020
date: 06-04-2020
keywords: <a few keywords>
link: <link to the generated html page>
---
#### Context: CEA LIST, Software Security and Reliability Lab
......
......@@ -85,14 +85,14 @@ function(err, data) {
</div>
{% if 0 != site.jobs.size %}
<h1 class="pageTitle">Open positions</h1>
<div class="contactInfo">
{% for position in site.jobs %}
<h3>{{ position.duration }} {{ position.position }} position</h3>
<h3>{{ position.title }}</h3>
<p>
{{ position.short }} [<a href="{{ position.url }}">More details</a>]<br>
Keywords: <em>{{ position.keywords }}</em>
......@@ -187,7 +187,7 @@ function(err, data) {
</ul>
</div>
<h1 class="pageTitle" style="clear: both;">Find us</h1>
<div class="locate">
<figure style=
......
......@@ -44,7 +44,7 @@ description: "Frama-C - An open-source extensible and collaborative platform
<i class="icon icon-arrow-thin-dwn"></i>
</a>
</div>
</section>
<section class="section normal codeDemoScreen textCenter" style="margin-top: 0">
......@@ -193,6 +193,8 @@ description: "Frama-C - An open-source extensible and collaborative platform
<div class="sectionContent">
<h3 tabindex="0">Frama-C Timeline</h3>
{% assign all_events = site.events | concat: site.jobs | sort: 'date' %}
<div class="eventScaleBlock">
<div class="scaleBg">
<u></u>
......@@ -200,9 +202,10 @@ description: "Frama-C - An open-source extensible and collaborative platform
<div id="event_calender_swiper" class="swiper-container">
<div class="swiper-wrapper">
{% for event in site.events %}
{% for event in all_events %}
<div class="swiper-slide">
<a role="button" class="eventLink"><time>{{ event.date | date: "<b>%Y</b>" }}</time><span>{{ event.event }}</span></a>
<a role="button" class="eventLink"><time>{{ event.date | date: "<b>%Y</b>" }}</time>
<span>{% if event.event %}{{ event.event }}{% else %}{{ event.title }}{% endif %}</span></a>
</div>
{% endfor %}
</div>
......@@ -213,7 +216,7 @@ description: "Frama-C - An open-source extensible and collaborative platform
<div id="event_detail_swiper" class="eventDetailsBlock swiper-container">
<div class="swiper-wrapper">
{% for event in site.events %}
{% for event in all_events %}
<div class="swiper-slide">
<div class="eventDetail">
<div class="contentBlk">
......@@ -221,7 +224,15 @@ description: "Frama-C - An open-source extensible and collaborative platform
<div>
<h3>{{ event.title }}</h3>
<p>{{ event.content }}</p>
{% if event.short %}
<p>{{ event.short }} [<a href="{{ event.link }}">More details</a>] </p>
{% else %}
<p>{{ event.content }}</p>
{% endif %}
{% if event.keywords %}
<p>Keywords: <i>{{ event.keywords }}</i></p>
{% endif %}
</div>
</div>
</div>
......
......@@ -9,11 +9,12 @@ title: Frama-C RSS News
<title>Frama-C RSS News</title>
<link>https://frama-c.com</link>
<description>Frama-C events</description>
{% assign last_event = site.events.last.date | date_to_rfc822 %}
{% assign all_events = site.events | concat: site.jobs | sort: 'date' %}
{% assign last_event = all_events.last.date | date_to_rfc822 %}
{% assign gen_date = site.time | date_to_rfc822 %}
<pubDate>{{last_event}}</pubDate>
<lastBuildDate>{{ gen_date }}</lastBuildDate>
{% for event in site.events reversed %}
{% for event in all_events reversed %}
<item>
<title>{{ event.title }}</title>
<link>https://frama-c.com{{ event.link }}</link>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment