Skip to content
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

Mise à jour #1

Open
wants to merge 34 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
5ff944f
correction doublons images archive devfestnoz 2024
rvailleux Jun 17, 2024
694f2bb
modification home page pour devfest 2024 + création page archive
rvailleux Jun 17, 2024
ea968f7
suppression image slidedecks en doublon
rvailleux Jun 18, 2024
171e1da
correction path sur les slidedecks des ateliers passés
rvailleux Jun 18, 2024
6fc549c
correction url cfp homepage
rvailleux Jun 18, 2024
9610a70
ajout graphisme homepage + correction typos
rvailleux Jun 19, 2024
84f047c
factorisation template button
rvailleux Jun 19, 2024
b2279f5
correction path img logo slider
rvailleux Jun 19, 2024
2b9f65d
update favicon
rvailleux Jun 20, 2024
ca9952f
updating meta tags
rvailleux Jun 20, 2024
2488269
ajout aftermovie
rvailleux Jun 20, 2024
5ccde86
Remove link in description
sliard Jun 21, 2024
271987a
ajout 1ers speakers
rvailleux Jul 1, 2024
e4c07ea
Merge branch 'master' of github.com:Code-d-Armor/conference
rvailleux Jul 1, 2024
98f7586
typo
rvailleux Jul 1, 2024
ddb1a62
Merge branch 'master' of github.com:rvailleux/conference
rvailleux Sep 2, 2024
b3b462f
add speakers
rvailleux Sep 2, 2024
bd598b7
add program
rvailleux Sep 2, 2024
c477c5b
correction 6conf + ajout include Agenda
rvailleux Sep 3, 2024
0d7fa40
change photo pascal
rvailleux Sep 5, 2024
44b7428
change photo pascal
rvailleux Sep 5, 2024
822da82
added id on speakers list + Thomas' photo
rvailleux Sep 6, 2024
e956959
added the agenda
rvailleux Sep 6, 2024
790e924
Merge branch 'add_program' of github.com:Code-d-Armor/conference
rvailleux Sep 6, 2024
1795e90
Merge branch 'master' of github.com:Code-d-Armor/conference
rvailleux Sep 6, 2024
33b8e15
fix img size
rvailleux Sep 6, 2024
2b8716b
added sponsors
rvailleux Sep 6, 2024
a0fd527
added CNAME entry
rvailleux Sep 10, 2024
e6c874e
added speaker and talk pierre renault
rvailleux Sep 27, 2024
70a9414
added schedule
rvailleux Oct 2, 2024
62dc120
correction centre de congres en palais
rvailleux Oct 2, 2024
272a797
added photos
rvailleux Oct 22, 2024
b05c5b5
added newsletter in front page
rvailleux Oct 22, 2024
5d5b4db
created archive devfest 2024
rvailleux Oct 22, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
16 changes: 8 additions & 8 deletions _data/commons.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
logo_url: "/assets/img/logo_dark.png"

menu:
- title: DevFest 2024
url: '/'
- title: Archives
url: '/archives'
- title: À propos
url: /a-propos
- title: DevFestNoz
url: '/assets/2024/devfestnoz/'
- title: DevFest 2023
url: /assets/2023/
- title: DevFest 2022
url: /assets/2022/
- title: DevFest 2021
url: /assets/2021/


Newsletter:
link : https://codedarmor.us7.list-manage.com/subscribe?u=05474659d9a3ff4697f4fc41c&id=cc5063773c
76 changes: 76 additions & 0 deletions _includes/agenda.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
<!-- Agenda Section Start -->
<section id="agenda" class="section-padding">
<div class="container">
<div class="row">

<div class="col-2 d-none-lg"></div>
<div class="col-8">
<div class="section-title-header text-center">
<h2 class="section-title wow fadeInUp" data-wow-delay="0.2s">{{ page.Agenda.title}}</h2>
</div>
<div class="row">
<div class="col-2 d-none-lg"></div>
<div class="col-8">
<div class="section-TOC">
<ul>
{% assign counter=0 %}
{% for talk in page.Agenda.schedule %}

<li class="pb-2">
<a href="#talk-{% increment couter %}" class="slot {{ talk.slot_type }}">{{talk.slot_begin_time}} - {{talk.title}}</a>
</li>

{% endfor %}
</ul>
</div>
</div>
<div class="col-2 d-none-lg"></div>
</div>
</div>
<div class="col-2 d-none-lg"></div>
</div>
<div class="row">
<div class="col-2 d-none-lg">

</div>

<div class="col-8">
{% assign counter=0 %}
{% for talk in page.Agenda.schedule %}
{% if talk.slot_type != "break" %}
<div class="row">
<div class="col">
<hr />
<div class="talk-box pt-3">
<p class="slot_begin_time">{{talk.slot_begin_time}}</p>
<h3 id="talk-{% increment counter %}">{{ talk.title }}</h3>

<div class="talk-speakers d-flex align-items-left">
{% for speaker in talk.speakers %}
{% assign speakerObj = page.Speakers.list | where: 'id', speaker.id | first %}
<div class="d-flex align-items-center mr-5">
<a href="#{{ speakerObj.id }}">
<img class="speaker-photo rounded-circle mr-2" style="width: 50px;" src="{{ site.baseurl }}{{ speakerObj.photo_url }}"
alt="{{ speakerObj.name }}">
</a>
<a href="#{{ speakerObj.id }}">
<p class="speaker-name">{{ speakerObj.name }}</p>
</a>
</div>

{% endfor %}
</div>
</div>
<p>{{ talk.description }}</p>
</div>
</div>
{% endif %}
{% endfor %}
</div>
<div class="col-2 d-none-lg">

</div>
</div>
</div>
</section>
<!-- Agenda Section End -->
19 changes: 19 additions & 0 deletions _includes/button.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{% if include.button %}
{% assign button_type = 'border' %}
{% if include.button.isPrimary %}
{% assign button_type = 'common'%}
{% endif %}
{% unless include.button.isExternal %}
{% capture base_url %}
{{ site.url }}{{ site.baseurl }}
{% endcapture %}
{% endunless %}

{% if include.button.isContrasted %}
{% assign contrasted = 'contrasted'%}
{% endif %}

<a href="{{ base_url }}{{ include.button.url }}" class="fadeInRight {{ contrasted }} wow btn btn-{{ button_type }} btn-lg"
target="{{ include.button.target}}"
data-wow-delay=".6s">{{ include.button.text }}</a>
{% endif %}
27 changes: 7 additions & 20 deletions _includes/carrousel.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<!-- Main Carousel Section Start -->

<div id="main-slide" class="carousel slide" data-ride="carousel">

{% if page.Carrousel_Slides.size > 1 %}
Expand All @@ -24,29 +25,15 @@
{% for slide in page.Carrousel_Slides %}

<div class="carousel-item {{ active_class }}">
<img class="d-block w-100" src="{{ site.baseurl }}{{ slide.image.url }}" alt="{{ slide.image.alt }}">
<div class="carousel-caption d-md-block">
<img class="wow fadeIn" data-wow-delay=".3s" href="{{ slide.logo }}" />
<img class="carousel-item-bg" class="d-block w-100" src="{{ site.baseurl }}{{ slide.image.url }}" alt="{{ slide.image.alt }}">
<div class="carousel-caption">
<img class="wow fadeIn logo" data-wow-delay=".3s" src="{{ site.baseurl }}{{ slide.logo }}" />
<h1 class="wow fadeInDown heading" data-wow-delay=".4s">{{ slide.title }}</h1>
<p class="fadeInUp wow" data-wow-delay=".6s">{{ slide.subtitle }}</p>
<p class="fadeInUp wow" data-wow-delay=".6s">{{ slide.subtitle2 }}</p>
{% if slide.button1 %}
{% assign button_type = 'border' %}
{% if slide.button1.isPrimary %}
{% assign button_type = 'common'%}
{% endif %}
<a href="{{ slide.button1.url }}" target="_blank" class="fadeInLeft wow btn btn-{{ button_type }} btn-lg"
data-wow-delay=".6s">{{ slide.button1.text }}</a>
{% endif %}

{% if slide.button2 %}
{% assign button_type = 'border' %}
{% if slide.button2.isPrimary %}
{% assign button_type = 'common'%}
{% endif %}
<a href="{{ site.url }}{{ site.baseurl }}{{ slide.button2.url }}" class="fadeInRight wow btn btn-{{ button_type }} btn-lg"
data-wow-delay=".6s">{{ slide.button2.text }}</a>
{% endif %}

{% include button.html button=slide.button1 %}
{% include button.html button=slide.button2 %}
</div>
</div>

Expand Down
2 changes: 1 addition & 1 deletion _includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div class="col-md-6 col-lg-3 col-sm-6 col-xs-12 wow fadeInUp short-description" data-wow-delay="0.2s">
<img src="{{ site.baseurl }}/assets/img/logo_light.png" alt="DevFestNoz logo">
<p>
{{ page.Details.what.shortDescription }}
{{ page.description }}
</p>
</div>
<div class="col-md-6 col-lg-3 col-sm-6 col-xs-12 wow fadeInUp" data-wow-delay="0.4s">
Expand Down
12 changes: 10 additions & 2 deletions _includes/gallery.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,20 @@
<div class="row">
<div class="col-12">
<div class="section-title-header text-center">
<h2 class="section-title wow fadeInUp" data-wow-delay="0.2s">{{ page.Gallery.title }}</h2>
<h2 class="section-title wow fadeInUp" data-wow-delay="0.2s">{{ include.params.title }}</h2>
</div>
</div>
</div>
<div class="row">
{% for photo in page.Gallery.photos %}
<div class="col-12">
<div class="text-center">
<p class="" data-wow-delay="0.2s">{{ include.params.description }}</p>
</div>
</div>
</div>

<div class="row">
{% for photo in include.params.photos %}
<div class="col-sm-12 col-lg-6">
<div class="gallery-box">
<div class="img-thumb">
Expand Down
26 changes: 14 additions & 12 deletions _includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,20 @@
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Essential META Tags -->
<meta property="og:title" content="{{page.title}}">
<meta property="og:description" content="{{page.description}}">
<meta property="og:type" content="website" />
<meta property="og:image" content="{{site.baseurl}}{{page.thumbnail_url}}">
<meta property="og:url" content="{{site.baseurl}}{{ page.permalink}}">
<meta name="twitter:card" content="summary_large_image">

<!-- Non-Essential, But Recommended -->
<meta property="og:description" content="{{page.description}}">
<meta property="og:site_name" content="{{page.title}}">
<meta name="twitter:image:alt" content="{{page.title}}">

<!-- Open Graph Meta Tags -->
<meta property="og:title" content="{{page.title}}">
<meta property="og:description" content="{{page.description}}">
<meta property="og:image" content="{{site.baseurl}}{{page.thumbnail_url}}">
<meta property="og:url" content="{{site.baseurl}}">
<meta property="og:type" content="website">
<meta property="og:site_name" content="{{page.title}}">

<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="{{page.title}}">
<meta name="twitter:description" content="{{page.description}}">
<meta name="twitter:image" content="{{site.baseurl}}{{page.thumbnail_url}}">

<title>{{ page.title}}</title>

Expand Down
23 changes: 23 additions & 0 deletions _includes/newsletter.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!-- Section Subscribe Newsletter Start -->
<!-- Params

page.Newsletter.title
page.Newsletter.description
page.Newsletter.cta

site.data.commons.Newsletter.link
-->

<section id="newsletter" class="section-padding">
<div class="container">
<div class="row">
<div class="col col-1ah2 text-lg-left text-center">
<h2 class="section-title wow fadeInUp">{{ page.Newsletter.title }}</h2>
<p>{{ page.Newsletter.description }}</p>
<p class="text-center m-4"><a class="btn btn-primary" href="{{ site.data.commons.Newsletter.link }}" target="_blank">{{
page.Newsletter.cta}}</a></p>
</div>
</div>
</div>
</section>
<!-- Section Subscribe Newsletter End -->
30 changes: 30 additions & 0 deletions _includes/register.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<section id="call-to-action" class="section-padding">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title-header text-center">
<h2 class="section-title wow fadeInUp" data-wow-delay="0.2s">{{include.params.title}}</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-2 d-none-lg">
</div>
<div class="col-lg-8 col-1ah2 text-center">
<p>{{ include.params.text }}</p>
</div>
<div class="col-2 d-none-lg">
</div>
</div>
<div class="row p-3">
<div class="col-2 d-none-lg">
</div>
<div class="col-lg-8 col-1ah2 text-center">
{% include button.html button=include.params.button1 %}
{% include button.html button=include.params.button2 %}
</div>
<div class="col-2 d-none-lg">
</div>
</div>
</div>
</section>
31 changes: 31 additions & 0 deletions _includes/speakers.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<section id="speakers" class="section-padding">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title-header text-center">
<h2 class="section-title wow fadeInUp" data-wow-delay="0.2s">{{ page.Speakers.title}}</h2>
</div>
</div>
</div>
{% for speaker in page.Speakers.list %}
<div class="row pt-5" id="{{ speaker.id }}">
<div class="col-2 d-none-lg">

</div>
<div class="col-lg-4 col-12">
{% if speaker.photo_url!= null %}
<img class="img-fluid mx-auto d-block" src="{{ site.baseurl }}{{ speaker.photo_url }}" alt="{{ speaker.name}}">
{% endif %}
</div>
<div class="col-lg-4 col-12 text-lg-left text-center">
<h3>{{ speaker.name }}</h3>
<p class="organization">{{ speaker.organization }}</p>
<p>{{ speaker.bio }}</p>
</div>
<div class="col-2 d-none-lg">

</div>
</div>
{% endfor %}
</div>
</section>
29 changes: 29 additions & 0 deletions _includes/sponsors.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<section id="sponsors" class="section-padding">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title-header text-center">
<h2 class="section-title wow fadeInUp" data-wow-delay="0.2s">{{ page.Sponsoring.title}}</h2>
<p>{{ page.Sponsoring.acknowlegment}}</p>
</div>
</div>
</div>

<div class="row pt-5" id="{{ speaker.id }}">
<div class="col-2 d-none-lg">

</div>
{% for sponsor in page.Sponsoring.sponsors %}
<div class="col-lg-3 col-12 p-3">
{% if sponsor.logo_url!= null %}
<a href="{{ sponsor.site_url }}" target="_blank"><img class="img-fluid mx-auto d-block" src="{{ site.baseurl }}{{ sponsor.logo_url }}" alt="{{ sponsor.name}}"></a>
{% endif %}
</div>
{% endfor %}
<div class="col-2 d-none-lg">

</div>
</div>

</div>
</section>
30 changes: 30 additions & 0 deletions _includes/video.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<section id="aftermovie" class="section-padding">
<div class="container">
<div class="row">
<div class="col-2 d-none-lg">

</div>
<div class="col-8 col-lg-12">
<div class="row section-title-header">
<div class="col">
<h2 class="section-title wow fadeInUp" data-wow-delay="0.2s">{{ include.params.title}}</h2>
</div>
</div>
<div class="row text-center">
<div class="col p-3">
<p>{{ include.params.text }}</p>
</div>
</div>
<div class="row text-center">
<div class="col">
<iframe width="560" height="315" src="{{ include.params.youtube_embed_url}}" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>

</div>
</div>
<div class="col-2 d-none-lg">

</div>
</div>
</div>
</section>
Loading