Skip to content

Commit

Permalink
conference date
Browse files Browse the repository at this point in the history
  • Loading branch information
misabegovic committed Nov 27, 2023
1 parent f23352e commit d49487a
Show file tree
Hide file tree
Showing 6 changed files with 87 additions and 4 deletions.
4 changes: 2 additions & 2 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
# You can create any custom variable you would like, and they will be accessible
# in the templates via {{ site.myvariable }}.
title: EuRuKo 2024
email: muhamed@euruko.com
email: muhamed@euruko.org
description: >- # this means to ignore newlines until "baseurl:"
EuRuKo is the annual European Ruby Conference. Join us in Tuzla, Bosnia & Herzegovina in 2024 - date TBD.
EuRuKo is the annual European Ruby Conference. Join us in Tuzla, Bosnia & Herzegovina in 2024 on 12-13th of September.
baseurl: "" # the subpath of your site, e.g. /blog
url: "https://2024.euruko.org" # the base hostname & protocol for your site, e.g. http://example.com

Expand Down
24 changes: 24 additions & 0 deletions _includes/sponsor_page_line.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<div class="sponsor-tile">
<div class="bg-{{sponsor.level}}" style="min-width: 10px;"></div>
<a href="{{ sponsor.url }}" target="_blank">
<img class="logo" src="/assets/images/sponsors/{{ sponsor.logo }}" />
<!-- <span class="level c-{{sponsor.level}}">{{sponsor.level}}</span> -->
</a>
<div class="content">
<p>{{ sponsor.description }}</p>
<div class="links-wrapper">
<a href="{{ sponsor.twitter }}" target="_blank">
<img src="/assets/images/services/twitter.svg"/>
</a>
<a href="{{ sponsor.facebook }}" target="_blank">
<img src="/assets/images/services/facebook.svg"/>
</a>
<a href="{{ sponsor.linkedin }}" target="_blank">
<img src="/assets/images/services/linkedin.svg"/>
</a>
<a href="{{ sponsor.url }}" target="_blank">
<img src="/assets/images/link.svg"/>
</a>
</div>
</div>
</div>
31 changes: 31 additions & 0 deletions _layouts/post.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
layout: default
---

<link rel="stylesheet" href="{{ '/assets/css/blog.css?v=' | append: site.github.build_revision | relative_url }}" media="print,screen">

{% assign minutes = content | strip_html | number_of_words | divided_by: 180 %}
{% if minutes == 0 %}
{% assign minutes = 1 %}
{% endif %}

<content>
<section class="section-spacing">
<view column class="layout-wrapper">
<h1 class="section-header align-self-start">{{ page.title }}</h1>
<div class="meta">
{% if page.minutes %}
{{ page.minutes }} minute read
{% else %}
{{ minutes }} minute read
{% endif %}
</div>

<article style="margin-top: 40px;">
{{ content }}
</article>
</view>
</section>
</content>

{% include newsletter.html %}
9 changes: 9 additions & 0 deletions _posts/2023-11-21-save-the-date.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
title: "Save the date: 12-13 September 2024"
layout: post
date: 2018-02-03 11:40:48 +0100
image:
---

Yup, this is happening, everyone! The next EuRuKo will take place in Bosnia & Herzegovina on the 12-13th of September.
More information regarding location, visual identity, speakers, and tickets is yet to come. If you want to stay up to date with future announcements follow us on social media or sign up for the newsletter below.
Binary file added assets/images/posts/tuzla.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 21 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ <h1 class="fw-bold c-red">
</h1>
<h3 class="fw-bold">
Tuzla, Bosnia & Herzegovina <br />
Date TBD
12-13th of September
</h3>
</view>
</header>
Expand All @@ -24,11 +24,30 @@ <h3 class="fw-bold">
<h3 class="description fw-medium">
EuRuKo is the annual European conference that brings you all the good news about Ruby and its friends. Every year it takes
place in a different European city, the location being chosen by the participants. We are tremendously happy to be organising
this next edition. Join us in Tuzla for the first-ever Ruby conference in Bosnia & Herzegovina - Date TBD.
this next edition. Join us in Tuzla on 12-13th of September the first-ever Ruby conference in Bosnia & Herzegovina.
</h3>
</view>
</section>

<section id="announcements" class="section-spacing">
<view column class="layout-wrapper">
<h2 class="section-header align-self-start">Announcements</h2>

{% for post in site.posts %}
<view class="announcements">
<!-- <view class="image" style='background-image: url("/assets/images/posts/{{ post.image }}")'></view> -->
<view class="text-wrapper">
<h3 class="fw-bold">
{{ post.title }}
</h3>
{{ post.excerpt }}
<a href="{{post.url}}" class="button bg-red align-self-start" >Read more...</a>
</view>
</view>
{% endfor %}
</view>
</section>

</content>

{% include newsletter.html %}

0 comments on commit d49487a

Please sign in to comment.