Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions rubycon.it/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ navigation:
about:
- title: Ruby at the core
icon: gem
#description: learn about the latest trends and best practices in ruby, rails, and related technologies from industry leaders.
description: Created by Ruby enthusiasts for Ruby enthusiasts. # Add MINASWAN and Italian hospitality.
description: learn about the latest trends and best practices in ruby, rails, and related technologies from industry leaders.
# description: Created by Ruby enthusiasts for Ruby enthusiasts. # Add MINASWAN and Italian hospitality.
Comment on lines +87 to +88
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🟢 It's good practice to remove commented-out code to keep the configuration file clean.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I disagree. Unless we move to a TODO/issue

- title: Community connections
icon: users
description: meet fellow ruby developers, share ideas, and build relationships with collaborators, employers, and enthusiasts.
Expand Down
13 changes: 9 additions & 4 deletions rubycon.it/_includes/about.html
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
{% capture content %}
<div class="grid md:grid-cols-3 gap-10">
{% for card in site.about %}
{% for data in site.about %}
<div class="bg-white p-8 rounded-lg shadow-md text-center hover:shadow-lg transition" data-aos="fade-up">
<div class="bg-red-100 w-16 h-16 mx-auto rounded-full flex items-center justify-center mb-4">
<i class="fas fa-{{ card.icon }} text-red-800 text-2xl"></i>
<i class="fas fa-{{ data.icon }} text-red-800 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">{{ card.title }}</h3>
<p class="text-gray-600">{{ card.description }}</p>
<h3 class="text-xl font-bold mb-3">{{ data.title }}</h3>
<p class="text-gray-600">{{ data.description }}</p>
</div>
{% endfor %}
</div>

{% assign why_post = site.posts | where: "slug", "why-rubycon" | first %}
<a href="{{ why_post.url | relative_url }}" class="text-xl max-w-3xl mx-auto text-center mt-16 block hover:text-red-900" data-aos="fade-up">
Learn more about us <i class="fa-solid fa-arrow-up-right-from-square"></i>
</a>
{% endcapture %}

{% include section.html
Expand Down
1 change: 1 addition & 0 deletions rubycon.it/_posts/2025-09-10-why-are-we-doing-this.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ title: "Why are we doing this? A word from the organizers"
date: 2025-09-10
#asset_url: /assets/images/articles/rubicon-map.png
published: false
slug: 'why-rubycon'
---

A lot of people asked us **"Why are we doing this?"**.
Expand Down