Skip to content

Commit

Permalink
Merge pull request #17 from dyvenia/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
acivitillo authored Jan 8, 2025
2 parents 4e640a0 + 6540b1c commit 70614d6
Show file tree
Hide file tree
Showing 38 changed files with 300 additions and 322 deletions.
2 changes: 1 addition & 1 deletion eleventy.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export default async function (eleventyConfig) {

// --------------------- Passthrough File Copy

eleventyConfig.addPassthroughCopy("admin/"); // don't process the CMS folder
eleventyConfig.addPassthroughCopy({ 'src/admin': 'admin' }); // don't process the CMS folder
// Disable 11ty dev server live reload when using CMS locally
eleventyConfig.setServerOptions({
liveReload: false
Expand Down
2 changes: 1 addition & 1 deletion src/_config/plugins/markdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export const markdownLib = markdownIt({
},
// prepend src for markdown images
resolvePath: (filepath, env) => {
return path.join('src', filepath);
return path.join('.', filepath);
},
renderImage(image, attributes) {
const [Image, options] = image;
Expand Down
2 changes: 2 additions & 0 deletions src/_data/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
book_call: Book a Call
book_call_link: https://meetings-eu1.hubspot.com/alessio-civitillo/the-scalable-way
23 changes: 9 additions & 14 deletions src/_data/team.yaml
Original file line number Diff line number Diff line change
@@ -1,27 +1,22 @@
admin:
- name: Alessio Civitillo
image: alessio.jpg
description_short: |
An experienced financial analyst and software engineer, Alessio brings a unique blend of expertise and vision to the world of data, ensuring that our clients unlock the hidden connections in their data and deliver value to their stakeholders.
description_long: |
image: /src/assets/images/team/Screenshot 2022-03-24 160548.png
description_short: An experienced financial analyst and software engineer, Alessio brings a unique blend of expertise and vision to the world of data, ensuring that our clients unlock the hidden connections in their data and deliver value to their stakeholders.
description_long: |-
Alessio Civitillo has spent over a decade blending financial analysis with software engineering. His work focuses on helping clients discover valuable insights hidden in complex datasets.
By merging data science with strategic thinking, Alessio consistently delivers solutions that drive measurable business success.
- name: Karol
image: karol.jpg
description_short: |
A dedicated data strategist focused on actionable insights and innovative data-driven solutions.
description_long: |
image: /src/assets/images/team/karol.jpg
description_short: A dedicated data strategist focused on actionable insights and innovative data-driven solutions.
description_long: |-
Karol specializes in developing data-driven strategies tailored to client goals. His keen analytical skills turn raw data into powerful insights.
With a background in finance and tech, Karol bridges the gap between complex data sets and meaningful business decisions.
- name: Mateusz
image: mateusz.jpg
description_short: |
Passionate about turning complex data into clear, actionable intelligence for better decision-making.
description_long: |
image: /src/assets/images/team/mateusz.jpg
description_short: Passionate about turning complex data into clear, actionable intelligence for better decision-making.
description_long: |-
Mateusz brings expertise in data analytics and process optimization. His focus is on making complex data easy to understand and act upon.
He thrives on designing solutions that transform insights into competitive advantages, driving client success through precision and clarity.
27 changes: 0 additions & 27 deletions src/_data/tteam.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion src/_includes/partials/main-nav.njk
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
>
</li>
{% endfor %}
<li><a href="#"> Book a Call </a></li>
<li><a href="{{ meta.book_call_link }}" target="blank"> {{ meta.book_call }} </a></li>
</ul>
</nav>

Expand Down
18 changes: 17 additions & 1 deletion admin/config.yml → src/admin/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ backend:
branch: dev

# The folder used to store uploaded images
media_folder: "assets/images"
media_folder: "src/assets/images"

# The CMS collections and their fields
collections:
Expand Down Expand Up @@ -74,12 +74,14 @@ collections:
folder: "src/posts/2024"
create: true
slug: "{{slug}}"
media_folder: "/src/assets/images"
fields:
- { label: "Title", name: "title", widget: "string" }
- { label: "Publish Date", name: "date", widget: "datetime" }
- { label: "Author", name: "author", widget: "string"}
- { label: "Description", name: "description", widget: "text" }
- { label: "Tags", name: "tags", widget: "list", default: ["post"], hint: "Enter tags separated by a comma" }
- { label: "Internal Notes", name: "internal_notes", widget: "markdown" }
- { label: "Body", name: "body", widget: "markdown" }

- name: "imprint"
Expand All @@ -101,6 +103,7 @@ collections:
create: true
extension: "yaml"
format: "yaml"
media_folder: "src/assets/images/team"
files:
- file: "src/_data/team.yaml"
label: "Team"
Expand All @@ -114,3 +117,16 @@ collections:
- { label: "Profile Picture", name: "image", widget: "image" }
- { label: "Short Description", name: "description_short", widget: "text" }
- { label: "Long Description", name: "description_long", widget: "text" }

- name: "meta"
label: "Meta Fields"
icon: "settings"
extension: "yaml"
format: "yaml"
files:
- file: "src/_data/meta.yaml"
label: "Meta Fields"
name: "meta"
fields:
- { label: "Book Call Text", name: "book_call", widget: "string", hint: "The text of the book a call button" }
- { label: "Book Call Link", name: "book_call_link", widget: "string", hint: "The link of the book a call button" }
Binary file added src/assets/images/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/data_organization-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/data_organization.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/gcp_a1_iap_load_balancer-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/gcp_a1_iap_load_balancer.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/gcp_a1_infrastructure-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/gcp_a1_infrastructure.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/modern_architecture-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/modern_architecture.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/resized_avatar_2-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/resized_avatar_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/resized_avatar_3-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/resized_avatar_3-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/resized_avatar_3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/og-images/test-preview.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/og-images/tests-preview.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/pages/about.njk
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ intro: |
<article class="feature flow flow-space-l">
{% for member in team.admin %}
<div class="about__content flow grid gutter-m" data-layout="50-50">
{% image "./src/assets/images/team/" + member.image, "" %}
{% image "." + member.image, "" %}
<div class="flow prose">
<h3>{{ member.name }}</h3>
{{ member.description_long | markdownFormat | safe }}
Expand Down
22 changes: 11 additions & 11 deletions src/pages/index.njk
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
hero:
title: Empowering Analytics Teams with Scalable & Automated Data Platforms
subtitle: "**The Scalable Way** is a professional services agency bringing software engineering practices to data platforms in order to achieve higher scalability, cost effectiveness, usability and reliability."
button_text: Learn more
button_target: ""
title: Empowering Analytics Teams with Scalable and Automated Data Platforms
subtitle: '**The Scalable Way** is a professional services agency bringing software engineering practices to data platforms in order to achieve higher scalability, cost effectiveness, usability and reliability.'
button_text: Let's talk
button_target: https://meetings-eu1.hubspot.com/alessio-civitillo/the-scalable-way
intro:
title: Is your data tech stack working with you or against you?
content: |-
Expand All @@ -16,7 +16,7 @@ highlight_one:
highlight_two:
title1: The ultimate data platform goal?
title2: Stuff just works!
content: Unfortunately, data analytics departments I meet often don’t end up where they had hoped. They struggle to build reliable data pipelines. They don’t manage to automate, and because of that they have problems onboarding users and excessive manual work.
content: Unfortunately, many data analytics departments don’t end up where they had hoped. They struggle to build reliable data pipelines, they don’t manage to automate, and because of that, they have problems onboarding users and excessive manual work.
foundations_titles:
title1: The 5 data platform
title2: foundations
Expand All @@ -34,7 +34,7 @@ foundations_elements:
about:
title: About us
content: |-
We believe in automation and good developer experience!
We believe in automation and good developer experience.

With a combined 30+ years of experience in infrastructure, data platforms, and data engineering, we are on a mission to help data analytics teams build more robust and scalable solutions.
whyus_intro:
Expand Down Expand Up @@ -72,11 +72,11 @@ our_services_items:
- title: Operations
prefix: Data Platform
description: Ensure continuous, reliable data platform performance through proactive monitoring, maintenance, and automated operational workflows.
description: Eleventy starter using modern CSS, fluid type, fluid spacing, flexible layout and progressive enhancement.
bodyClass: home
blog:
title: Our Insights
intro: Selected Articles. Check our blog for more.
title: Our Insights
bodyClass: home
description: Eleventy starter using modern CSS, fluid type, fluid spacing, flexible layout and progressive enhancement.
layout: base
permalink: /index.html
title: The Scalable Way
Expand Down Expand Up @@ -154,9 +154,9 @@ title: The Scalable Way
<div class="flow">{{ about.content | markdownFormat | safe }}</div>
</header>
<div class="grid region" data-layout="thirds">
{% for member in admin.team %}
{% for member in team.admin %}
<div class="about__content flow">
{% image "./src/assets/images/team/" + member.image, "" %}
{% image "." + member.image, "" %}

<h3>{{ member.name }}</h3>
{{ member.description_short | markdownFormat | safe }}
Expand Down
9 changes: 0 additions & 9 deletions src/posts/2024/2024-11-20-prefect-deployments.md

This file was deleted.

Loading

0 comments on commit 70614d6

Please sign in to comment.